示例#1
0
 public VehiclesController(IVehicleService vehicleService,
                           IErrorCodeConverter errorCodeConverter,
                           IDataStructureConverter dataStructureConverter)
 {
     this.vehicleService         = vehicleService;
     this.errorCodeConverter     = errorCodeConverter;
     this.dataStructureConverter = dataStructureConverter;
 }
示例#2
0
 public LocationsController(ILocationService locationService, IErrorCodeConverter errorCodeConverter, IDataStructureConverter dataStructureConverter)
 {
     this.locationService        = locationService;
     this.errorCodeConverter     = errorCodeConverter;
     this.dataStructureConverter = dataStructureConverter;
 }
 public SkusController(ISkuService skuService, IErrorCodeConverter errorCodeConverter, IDataStructureConverter dataStructureConverter)
 {
     this.skuService             = skuService;
     this.errorCodeConverter     = errorCodeConverter;
     this.dataStructureConverter = dataStructureConverter;
 }
 public LoginController(IAuthenticateUser authenticateUser, IErrorCodeConverter errorCodeConverter)
 {
     this.authenticateUser   = authenticateUser;
     this.errorCodeConverter = errorCodeConverter;
 }