Ejemplo n.º 1
0
 public GetLocationsCommandHandler(IMapper mapper, IAssetDataService assetDataService,
                                   ILocationDataService locationDataService)
 {
     this.mapper              = mapper;
     this.assetDataService    = assetDataService;
     this.locationDataService = locationDataService;
 }
Ejemplo n.º 2
0
 public LocationService(ILocationDataService locationDataService, IMapper mapper,
                        IAssetDataService assetDataService)
 {
     this.locationDataService = locationDataService;
     this.mapper           = mapper;
     this.assetDataService = assetDataService;
 }
Ejemplo n.º 3
0
 public GetTripsCommandHandler(IAssetDataService assetDataService, IMapper mapper,
     ITripDataService tripDataService)
 {
     this.assetDataService = assetDataService;
     this.mapper = mapper;
     this.tripDataService = tripDataService;
 }
 public ChangeDeviceCommandHandler(IDeviceTypeDataService deviceTypeDataService,
                                   IRepository repository, IAssetDataService assetDataService, IDeviceService deviceService)
 {
     this.deviceTypeDataService = deviceTypeDataService;
     this.repository            = repository;
     this.assetDataService      = assetDataService;
     this.deviceService         = deviceService;
 }
Ejemplo n.º 5
0
 public GetTripsCommandHandler(IRepository repository, IAssetDataService assetDataService, IMapper mapper,
                               ITripDataService tripDataService)
 {
     this.repository       = repository;
     this.assetDataService = assetDataService;
     this.mapper           = mapper;
     this.tripDataService  = tripDataService;
 }
Ejemplo n.º 6
0
 public GetDeviceConnectionsCommandHandler(IRepository repository,
                                           IAssetDataService assetDataService)
 {
     this.repository       = repository;
     this.assetDataService = assetDataService;
 }
Ejemplo n.º 7
0
 public RenameAssetCommandHandler(IRepository repository, IAssetDataService assetDataService)
 {
     this.repository       = repository;
     this.assetDataService = assetDataService;
 }