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