80 lines
1.9 KiB
C#
80 lines
1.9 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)
|
|
{
|
|
return _col.Update(updatedJump);
|
|
}
|
|
|
|
public bool DeleteById(int id)
|
|
{
|
|
return _col.Delete(new BsonValue(id));
|
|
}
|
|
|
|
#endregion Public Methods
|
|
|
|
#region Private Fields
|
|
|
|
private readonly ILiteCollection<Jump> _col;
|
|
private readonly IDataProvider _dataProvider;
|
|
|
|
#endregion Private Fields
|
|
}
|
|
} |