Files
SkydiveLogs/Back/skydiveLogs-api.Infrastructure/JumpRepository.cs
Sébastien André 143127cd01 Add a cache system on the referential info
+ Add an identity service
2021-04-17 22:17:45 +02:00

75 lines
1.8 KiB
C#

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 IEnumerable<Jump> 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<Jump> GetAll()
{
throw new System.NotImplementedException();
}
public Jump GetById(int id)
{
return _col.FindById(new BsonValue(id));
}
public bool Update(Jump updatedJump)
{
throw new System.NotImplementedException();
}
#endregion Public Methods
#region Private Fields
private readonly ILiteCollection<Jump> _col;
private readonly IDataProvider _dataProvider;
#endregion Private Fields
}
}