Files
piaps-course-work-university/contingent_report_desktop/Controller/BusinessLogic/StudentLogic.cs

33 lines
729 B
C#

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