public SwabJobMatchService(
     IUnitOfWork unitOfWork,
     IDriverAccountService driverAccountService,
     IMapper mapper)
 {
     UnitOfWork           = unitOfWork;
     Mapper               = mapper;
     DriverAccountService = DriverAccountService;
 }
Exemple #2
0
 public DriverAccountController(
     IDriverAccountService driverAccountService,
     IAuthService authService) : base(authService)
 {
     DriverAccountService = driverAccountService;
 }