2024-11-04 22:26:40 +04:00
|
|
|
|
using CandidateReviewContracts.BindingModels;
|
|
|
|
|
using CandidateReviewContracts.SearchModels;
|
|
|
|
|
using CandidateReviewContracts.ViewModels;
|
|
|
|
|
|
|
|
|
|
namespace CandidateReviewContracts.StoragesContracts
|
|
|
|
|
{
|
|
|
|
|
public interface ICompanyStorage
|
|
|
|
|
{
|
|
|
|
|
List<CompanyViewModel> GetFullList();
|
|
|
|
|
List<CompanyViewModel> GetFilteredList(CompanySearchModel model);
|
|
|
|
|
CompanyViewModel? GetElement(CompanySearchModel model);
|
2024-12-09 02:10:45 +04:00
|
|
|
|
int? Insert(CompanyBindingModel model);
|
2024-11-04 22:26:40 +04:00
|
|
|
|
CompanyViewModel? Update(CompanyBindingModel model);
|
|
|
|
|
CompanyViewModel? Delete(CompanyBindingModel model);
|
|
|
|
|
}
|
|
|
|
|
}
|