using LiteDB; using skydiveLogs_api.Domain; using skydiveLogs_api.DomainService.Repositories; using skydiveLogs_api.Infrastructure.Interfaces; using System.Collections.Generic; namespace skydiveLogs_api.Infrastructure { public class JumpRepository : IJumpRepository { #region Public Constructors public JumpRepository(IDataProvider dataProvider) { _dataProvider = dataProvider; _col = _dataProvider.CollOfJump; } #endregion Public Constructors #region Public Methods public int Add(Jump newJump) { int result; try { var tmp = _col.Insert(newJump); result = tmp.AsInt32; } catch { result = 0; } return result; } public bool DeleteById(int id) { return _col.Delete(new BsonValue(id)); } public IEnumerable GetAll(User user) { return _col.Include(x => x.Aircraft) .Include(x => x.DropZone) .Include(x => x.Gear) .Include(x => x.JumpType) .Query() .Where(j => j.User.Id == user.Id) .ToList(); } public IEnumerable GetAll() { throw new System.NotImplementedException(); } public Jump GetById(int id) { return _col.FindById(new BsonValue(id)); } public bool Update(Jump updatedJump) { return _col.Update(updatedJump); } #endregion Public Methods #region Private Fields private readonly ILiteCollection _col; private readonly IDataProvider _dataProvider; #endregion Private Fields } }