Files
Backend-Api/CompanyManagment.App.Contracts/EmployeeInsurancListData/IEmployeeInsurancListDataApplication.cs
2024-07-05 21:36:15 +03:30

18 lines
631 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using _0_Framework.Application;
using CompanyManagment.App.Contracts.EmployeeInsurancListData;
namespace CompanyManagment.App.Contracts.EmployeeInsurancListData;
public interface IEmployeeInsurancListDataApplication
{
OperationResult Create(CreateEmployeeInsurancListData command);
OperationResult Edit(EditEmployeeInsurancListData command);
DetailsEmployeeInsurancListData GetDetails(long id);
List<EmployeeInsurancListDataViewModel> Search(EmployeeInsurancListDataSearchModel searchModel);
}