Update interface of StatsRepo
This commit is contained in:
@@ -2,7 +2,6 @@ using LiteDB;
|
||||
using skydiveLogs_api.Domain;
|
||||
using skydiveLogs_api.DomainService.Repositories;
|
||||
using skydiveLogs_api.Infrastructure.Interfaces;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace skydiveLogs_api.Infrastructure
|
||||
{
|
||||
@@ -37,11 +36,6 @@ namespace skydiveLogs_api.Infrastructure
|
||||
return result;
|
||||
}
|
||||
|
||||
public IEnumerable<StatsByYear> GetAll()
|
||||
{
|
||||
throw new System.NotImplementedException();
|
||||
}
|
||||
|
||||
public StatsByYear GetAll(User user)
|
||||
{
|
||||
return _col.Include(x => x.User)
|
||||
@@ -50,16 +44,6 @@ namespace skydiveLogs_api.Infrastructure
|
||||
.SingleOrDefault();
|
||||
}
|
||||
|
||||
public StatsByYear GetById(int id)
|
||||
{
|
||||
throw new System.NotImplementedException();
|
||||
}
|
||||
|
||||
public int GetCount()
|
||||
{
|
||||
throw new System.NotImplementedException();
|
||||
}
|
||||
|
||||
public bool Update(StatsByYear stats)
|
||||
{
|
||||
return _col.Update(stats);
|
||||
|
||||
Reference in New Issue
Block a user