33 lines
800 B
C#
33 lines
800 B
C#
using DataModels.Orders;
|
|
|
|
namespace Controller.BusinessLogic
|
|
{
|
|
public class ExpulsionOrderLogic : AbstractLogic<NextCourseOrder>
|
|
{
|
|
public override NextCourseOrder add(NextCourseOrder entity)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public override NextCourseOrder get(int id)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public override List<NextCourseOrder> getAll()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public override NextCourseOrder remove(int id)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public override NextCourseOrder update(NextCourseOrder entity)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|