16 lines
502 B
C#
16 lines
502 B
C#
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);
|
|
}
|
|
}
|