add employee by client to orginal part 1
This commit is contained in:
@@ -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);
|
||||
}
|
||||
Reference in New Issue
Block a user