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

33 lines
702 B
C#

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