Example #1
0
 public SignUpService(
     ITransactionService transactionService,
     IDriverService domainDriverService,
     IDispatcherService domainDispatcherService,
     ICompanyService domainCompanyService,
     IGarageService domainGarageService,
     IApplicationVehicleService vehicleService)
     : base(transactionService)
 {
     DomainDriverService     = domainDriverService;
     DomainDispatcherService = domainDispatcherService;
     DomainCompanyService    = domainCompanyService;
     DomainGarageService     = domainGarageService;
     VehicleService          = vehicleService;
 }
Example #2
0
 public VehiclesController(IApplicationVehicleService ApplicationVehicleService)
 {
     ApplicationVehicleService = ApplicationVehicleService;
 }