CourseWork_KPO/CandidateReviewContracts/BusinessLogicsContracts/IVacancyLogic.cs

16 lines
526 B
C#
Raw 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 IVacancyLogic
{
List<VacancyViewModel>? ReadList(VacancySearchModel? model);
VacancyViewModel? ReadElement(VacancySearchModel model);
bool Create(VacancyBindingModel model);
bool Update(VacancyBindingModel model);
bool Delete(VacancyBindingModel model);
}
}