2024-11-12 13:07:37 +04:00
|
|
|
|
using EmployeeManagmentContracts.BindingModels;
|
2024-11-12 21:25:53 +04:00
|
|
|
|
using EmployeeManagmentContracts.SearchModels;
|
|
|
|
|
using EmployeeManagmentContracts.ViewModels;
|
2024-11-12 13:07:37 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace EmployeeManagmentContracts.BusinessLogicContracts
|
|
|
|
|
{
|
|
|
|
|
public interface ISalaryLogic
|
|
|
|
|
{
|
2024-11-26 22:35:12 +04:00
|
|
|
|
List<PhisicalPersonViewModel> GetFullList();
|
|
|
|
|
List<PhisicalPersonViewModel> GetFilteredList(PhisicalPersonSearchModel model);
|
|
|
|
|
PhisicalPersonViewModel? GetElement(int id);
|
|
|
|
|
void Insert(PhisicalPersonViewModel model);
|
|
|
|
|
void Update(PhisicalPersonViewModel model);
|
2024-11-12 13:07:37 +04:00
|
|
|
|
void Delete(int id);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|