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
|
|
|
|
|
{
|
|
|
|
|
List<SalaryViewModel> GetSalaries(SalarySearchModel model);
|
|
|
|
|
SalaryViewModel? GetSalaryById(int id);
|
|
|
|
|
void CreateOrUpdate(SalaryBindingModel model);
|
|
|
|
|
void Delete(int id);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|