using DataModels.Models; namespace Controller.BusinessLogic { public class GroupLogic : AbstractLogic { public override Group add(Group entity) { throw new NotImplementedException(); } public override Group get(int id) { throw new NotImplementedException(); } public override List getAll() { throw new NotImplementedException(); } public override Group remove(int id) { throw new NotImplementedException(); } public override Group update(Group entity) { throw new NotImplementedException(); } } }