コード例 #1
0
 public DeviceLocationHub(ILocationBusinessService locationBusinessService)
 {
     LocationService = locationBusinessService;
 }
コード例 #2
0
 public DeviceLocationController(IHubContext <DeviceLocationHub> deviceLocationHubContext, ILocationBusinessService locationBusinessService)
 {
     LocationService          = locationBusinessService;
     DeviceLocationHubContext = deviceLocationHubContext;
 }
コード例 #3
0
 public DeviceController(ILocationBusinessService locationBusinessService)
 {
     locationService = locationBusinessService;
 }
コード例 #4
0
 public ProfileCardController(IProfileCardBusinessService profileCardBusinessService, ILocationBusinessService locationService)
 {
     this.profileCardBusinessService = profileCardBusinessService;
     this.locationService            = locationService;
 }