using EmployeeManagmentContracts.BindingModels; using EmployeeManagmentContracts.SearchModels; using EmployeeManagmentContracts.ViewModels; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace EmployeeManagmentContracts.BusinessLogicContracts { public interface IVacationLogic { List GetFullList(); List GetFilteredList(EmployeeSearchModel model); PhisicalPersonViewModel? GetElement(int id); void Insert(PhisicalPersonViewModel model); void Update(PhisicalPersonViewModel model); void Delete(int id); } }