public DeviceLocationHub(ILocationBusinessService locationBusinessService) { LocationService = locationBusinessService; }
public DeviceLocationController(IHubContext <DeviceLocationHub> deviceLocationHubContext, ILocationBusinessService locationBusinessService) { LocationService = locationBusinessService; DeviceLocationHubContext = deviceLocationHubContext; }
public DeviceController(ILocationBusinessService locationBusinessService) { locationService = locationBusinessService; }
public ProfileCardController(IProfileCardBusinessService profileCardBusinessService, ILocationBusinessService locationService) { this.profileCardBusinessService = profileCardBusinessService; this.locationService = locationService; }