Update interface of StatsRepo

This commit is contained in:
2026-01-23 16:54:05 +01:00
parent 387228a3cf
commit 656b578f9b
11 changed files with 6 additions and 152 deletions

View File

@@ -37,11 +37,6 @@ namespace skydiveLogs_api.Infrastructure
return result;
}
public IEnumerable<StatsForLastMonthByDz> GetAll()
{
throw new System.NotImplementedException();
}
public StatsForLastMonthByDz GetAll(User user)
{
return _col.Include(x => x.User)
@@ -50,16 +45,6 @@ namespace skydiveLogs_api.Infrastructure
.SingleOrDefault();
}
public StatsForLastMonthByDz GetById(int id)
{
throw new System.NotImplementedException();
}
public int GetCount()
{
throw new System.NotImplementedException();
}
public bool Update(StatsForLastMonthByDz stats)
{
return _col.Update(stats);