2024-11-04 22:26:40 +04:00
|
|
|
|
using CandidateReviewContracts.BindingModels;
|
|
|
|
|
using CandidateReviewContracts.SearchModels;
|
|
|
|
|
using CandidateReviewContracts.ViewModels;
|
|
|
|
|
|
|
|
|
|
namespace CandidateReviewContracts.BusinessLogicsContracts
|
|
|
|
|
{
|
|
|
|
|
public interface ICompanyLogic
|
|
|
|
|
{
|
|
|
|
|
List<CompanyViewModel>? ReadList(CompanySearchModel? model);
|
|
|
|
|
CompanyViewModel? ReadElement(CompanySearchModel model);
|
2024-11-18 23:37:50 +04:00
|
|
|
|
int Create(CompanyBindingModel model);
|
2024-11-04 22:26:40 +04:00
|
|
|
|
bool Update(CompanyBindingModel model);
|
|
|
|
|
bool Delete(CompanyBindingModel model);
|
|
|
|
|
}
|
|
|
|
|
}
|