|
| 1 | +using System; |
| 2 | +using System.Collections.Generic; |
| 3 | +using System.Linq; |
| 4 | +using System.Threading.Tasks; |
| 5 | +using TwoWeeksReady.Admin.Security; |
| 6 | +using TwoWeeksReady.Common.EmergencyKits; |
| 7 | + |
| 8 | +namespace TwoWeeksReady.Admin.Data |
| 9 | +{ |
| 10 | + public class FunctionsRepository : IRepository |
| 11 | + { |
| 12 | + private TokenProvider _tokenProvider; |
| 13 | + |
| 14 | + public FunctionsRepository(TokenProvider tokenProvider) |
| 15 | + { |
| 16 | + this._tokenProvider = tokenProvider; |
| 17 | + } |
| 18 | + public Task<IEnumerable<BaseKit>> GetAllBaseKits() |
| 19 | + { |
| 20 | + throw new NotImplementedException(); |
| 21 | + } |
| 22 | + |
| 23 | + public Task<IEnumerable<HazardHunt>> GetAllHazardHunts() |
| 24 | + { |
| 25 | + throw new NotImplementedException(); |
| 26 | + } |
| 27 | + |
| 28 | + public Task<IEnumerable<HazardInfo>> GetAllHazardInfos() |
| 29 | + { |
| 30 | + throw new NotImplementedException(); |
| 31 | + } |
| 32 | + |
| 33 | + public Task<BaseKit> GetBaseKitById(string id) |
| 34 | + { |
| 35 | + throw new NotImplementedException(); |
| 36 | + } |
| 37 | + |
| 38 | + public Task<HazardHunt> GetHazardHuntById(string id) |
| 39 | + { |
| 40 | + throw new NotImplementedException(); |
| 41 | + } |
| 42 | + |
| 43 | + public Task<HazardInfo> GetHazardInfoById(string id) |
| 44 | + { |
| 45 | + throw new NotImplementedException(); |
| 46 | + } |
| 47 | + |
| 48 | + public Task<BaseKitItem> SaveBaseKitItem(BaseKitItem kit) |
| 49 | + { |
| 50 | + throw new NotImplementedException(); |
| 51 | + } |
| 52 | + |
| 53 | + public Task<HazardHunt> SaveHazardHunt(HazardHunt hazardHunt) |
| 54 | + { |
| 55 | + throw new NotImplementedException(); |
| 56 | + } |
| 57 | + |
| 58 | + public Task<HazardInfo> SaveHazardInfo(HazardInfo hazardInfo) |
| 59 | + { |
| 60 | + throw new NotImplementedException(); |
| 61 | + } |
| 62 | + } |
| 63 | +} |
0 commit comments