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; }
public VehiclesController(IApplicationVehicleService ApplicationVehicleService) { ApplicationVehicleService = ApplicationVehicleService; }