🩹 Fix #38
continuous-integration/drone/push Build is failing Details

pull/39/head
Alexis Drai 3 years ago
parent 31f988dcb0
commit 78f02448b2

@ -1,15 +1,12 @@
using System; using System.Collections.Generic;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Model namespace Model
{ {
internal interface IManager internal interface IManager
{ {
public T Add<T>(ref T toAdd); public T Add<T>(ref T toAdd);
public T Remove<T>(ref T toRemove); public void Remove<T>(ref T toRemove);
public T Update<T>(ref T before, ref T after); public T Update<T>(ref T before, ref T after);
public T GetOneById<T>(int id);
public IEnumerable<T> GetAll<T>();
} }
} }

Loading…
Cancel
Save