PIbd-21_CourseWork_Polyclin.../Polyclinic/PolyclinicBusinessLogic/BusinessLogics/UserLogic.cs

36 lines
915 B
C#
Raw Normal View History

using PolyclinicContracts.BindingModels;
using PolyclinicContracts.BusinessLogicsContracts;
using PolyclinicContracts.SearchModels;
using PolyclinicContracts.ViewModels;
namespace PolyclinicBusinessLogic.BusinessLogics
{
public class UserLogic : IUserLogic
{
public bool Create(UserBindingModel model)
{
throw new NotImplementedException();
}
public bool Delete(UserBindingModel model)
{
throw new NotImplementedException();
}
public UserViewModel? ReadElement(UserSearchModel model)
{
throw new NotImplementedException();
}
public List<UserViewModel>? ReadList(UserSearchModel? model)
{
throw new NotImplementedException();
}
public bool Update(UserBindingModel model)
{
throw new NotImplementedException();
}
}
}