CourseWork_KPO/CandidateReviewContracts/BusinessLogicsContracts/IUserLogic.cs

16 lines
502 B
C#
Raw Permalink Normal View History

2024-11-04 22:26:40 +04:00
using CandidateReviewContracts.BindingModels;
using CandidateReviewContracts.SearchModels;
using CandidateReviewContracts.ViewModels;
namespace CandidateReviewContracts.BusinessLogicsContracts
{
public interface IUserLogic
{
List<UserViewModel>? ReadList(UserSearchModel? model);
UserViewModel? ReadElement(UserSearchModel model);
bool Create(UserBindingModel model);
bool Update(UserBindingModel model);
bool Delete(UserBindingModel model);
}
}