using CandidateReviewContracts.BindingModels; using CandidateReviewContracts.SearchModels; using CandidateReviewContracts.ViewModels; namespace CandidateReviewContracts.BusinessLogicsContracts { public interface IUserLogic { List? ReadList(UserSearchModel? model); UserViewModel? ReadElement(UserSearchModel model); bool Create(UserBindingModel model); bool Update(UserBindingModel model); bool Delete(UserBindingModel model); } }