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

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

@ -1,15 +1,12 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Collections.Generic;
namespace Model
{
internal interface IManager
{
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 GetOneById<T>(int id);
public IEnumerable<T> GetAll<T>();
}
}

Loading…
Cancel
Save