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