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