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? ReadList(UserSearchModel? model) { throw new NotImplementedException(); } public bool Update(UserBindingModel model) { throw new NotImplementedException(); } } }