CourseWork_KPO/CandidateReviewContracts/BusinessLogicsContracts/ICompanyLogic.cs

16 lines
525 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 ICompanyLogic
{
List<CompanyViewModel>? ReadList(CompanySearchModel? model);
CompanyViewModel? ReadElement(CompanySearchModel model);
int Create(CompanyBindingModel model);
2024-11-04 22:26:40 +04:00
bool Update(CompanyBindingModel model);
bool Delete(CompanyBindingModel model);
}
}