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