using System.Collections.Generic; namespace Model { public interface IManager { public T Add(T toAdd); public T GetOneById(int id); public IEnumerable GetAll(); public T Update(T before, T after); public void Remove(T toRemove); } }