add employee by client to orginal part 1

This commit is contained in:
MahanCh
2025-03-08 21:49:34 +03:30
parent be3d5939cc
commit 89a01b5948
39 changed files with 1698 additions and 196 deletions

View File

@@ -0,0 +1,11 @@
using _0_Framework.Domain;
using CompanyManagment.App.Contracts.EmployeeClientTemp;
namespace Company.Domain.EmployeeClientTempAgg;
public interface IEmployeeClientTempRepository : IRepository<long, EmployeeClientTemp>
{
EmployeeClientTemp GetByEmployeeIdAndWorkshopId(long employeeId, long commandWorkshopId);
EmployeeClientTempGetDetailsViewModel GetDetails(long employeeId, long workshopId);
void Remove(EmployeeClientTemp entity);
}