예제 #1
0
 public DeviceDBApiController(IUserProfileService userProfile,
                              IDeviceDBService deviceServiceDB,
                              INotificationHubRepository notificationHubRepo,
                              ILogger <DeviceDBApiController> logger)
     : base(userProfile)
 {
     _deviceServiceDB     = deviceServiceDB;
     _notificationHubRepo = notificationHubRepo;
     this.logger          = logger;
 }
 public NotificationHubController(INotificationHubRepository notificationHubRepo, ILogger <NotificationHubController> logger)
 {
     _notificationHubRepo = notificationHubRepo;
     this.logger          = logger;
 }