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