using System.Collections.Generic; using LiteDB; using skydiveLogs_api.Domain; using skydiveLogs_api.DomainService.Repositories; using skydiveLogs_api.Infrastructure.Interfaces; namespace skydiveLogs_api.Infrastructure { public class GearRepository : IGearRepository { public GearRepository(IDataProvider dataProvider) { _dataProvider = dataProvider; _col = _dataProvider.CollOfGear; } public IEnumerable GetAll() { throw new System.NotImplementedException(); } public IEnumerable GetAll(User user) { return _col.Include(x => x.User) .Query() .Where(j => j.User.Id == user.Id) .ToList(); } public Gear GetById(int id) { return _col.FindById(new BsonValue(id)); } public bool Update(Gear updatedGear) { return _col.Update(updatedGear); } public int Add(Gear newGear) { int result; try { var tmp = _col.Insert(newGear); result = tmp.AsInt32; } catch { result = 0; } return result; } private readonly IDataProvider _dataProvider; private readonly ILiteCollection _col; } }