🚑 Fix build
continuous-integration/drone/push Build is passing Details

by implementing IManager correctly in PlayerManager
pull/42/head
Alexis Drai 3 years ago
parent 78f02448b2
commit f30fbbbca6

@ -13,7 +13,17 @@ namespace Model
throw new NotImplementedException(); throw new NotImplementedException();
} }
public T Remove<T>(ref T toRemove) public IEnumerable<T> GetAll<T>()
{
throw new NotImplementedException();
}
public T GetOneById<T>(int id)
{
throw new NotImplementedException();
}
public void Remove<T>(ref T toRemove)
{ {
throw new NotImplementedException(); throw new NotImplementedException();
} }

Loading…
Cancel
Save