Update interface of StatsRepo
This commit is contained in:
@@ -37,11 +37,6 @@ namespace skydiveLogs_api.Infrastructure
|
||||
return result;
|
||||
}
|
||||
|
||||
public IEnumerable<StatsByAircraft> GetAll()
|
||||
{
|
||||
throw new System.NotImplementedException();
|
||||
}
|
||||
|
||||
public StatsByAircraft GetAll(User user)
|
||||
{
|
||||
return _col.Include(x => x.User)
|
||||
@@ -50,16 +45,6 @@ namespace skydiveLogs_api.Infrastructure
|
||||
.SingleOrDefault();
|
||||
}
|
||||
|
||||
public StatsByAircraft GetById(int id)
|
||||
{
|
||||
throw new System.NotImplementedException();
|
||||
}
|
||||
|
||||
public int GetCount()
|
||||
{
|
||||
throw new System.NotImplementedException();
|
||||
}
|
||||
|
||||
public bool Update(StatsByAircraft stats)
|
||||
{
|
||||
return _col.Update(stats);
|
||||
|
||||
Reference in New Issue
Block a user