public ServiceHistoryRepository(IServiceDirectoryMapper serviceMapper, IServiceHistoryMapper serviceHistoryMapper, IEmployeeMapper employeeMapper, IClientMapper clientMapper)
 {
     this.serviceHistoryMapper = serviceHistoryMapper;
     this.serviceMapper        = serviceMapper;
     this.employeeMapper       = employeeMapper;
     this.clientMapper         = clientMapper;
 }
Exemplo n.º 2
0
 public ServiceDirectoryRepository(IServiceDirectoryMapper serviceMapper)
 {
     this.serviceMapper = serviceMapper;
 }