Files
Backend-Api/Company.Domain/EmployeeInsurancListDataAgg/IEmployeeInsurancListDataRepository.cs
2024-07-05 21:36:15 +03:30

18 lines
872 B
C#

using System.Collections.Generic;
using _0_Framework.Application;
using _0_Framework.Domain;
using Company.Domain.EmployeeInsurancListDataAgg;
using CompanyManagment.App.Contracts.EmployeeChildren;
using CompanyManagment.App.Contracts.EmployeeInsurancListData;
namespace Company.Domain.EmployeeChildrenAgg;
public interface IEmployeeInsurancListDataRepository : IRepository<long, EmployeeInsurancListData>
{
//OperationResult Create(CreateEmployeeInsurancListData command);
OperationResult Edit(EditEmployeeInsurancListData command);
DetailsEmployeeInsurancListData GetDetails(long id);
List<EmployeeInsurancListDataViewModel> Search(EmployeeInsurancListDataSearchModel searchModel);
void RemoveRange(long id);
EmployeeInsurancListDataViewModel GetEmployeeInsurancListDataByEmployeeIdAndInsuranceListId(long employeeId, long insuransListId);
}