Esempio n. 1
0
 public HubOwnerController(IHubOwnerService hubOwnerServiceParam,
     IUserProfileService userProfileService)
     : base(userProfileService)
 {
     this._hubOwnerService = hubOwnerServiceParam;
 }
Esempio n. 2
0
 public HubController(IHubOwnerService hubOwnerService, IHubService hubService, IUserProfileService userProfileService)
     : base(userProfileService)
 {
     _hubOwnerService = hubOwnerService;
     _hubService      = hubService;
 }
Esempio n. 3
0
 public HubController(IHubOwnerService hubOwnerService, IHubService hubService)
 {
     _hubOwnerService = hubOwnerService;
     _hubService = hubService;
 }
Esempio n. 4
0
 public HubOwnerController(IHubOwnerService hubOwnerServiceParam,
                           IUserProfileService userProfileService)
     : base(userProfileService)
 {
     this._hubOwnerService = hubOwnerServiceParam;
 }
Esempio n. 5
0
 public HubsController(IHubService hubService, IHubOwnerService hubOwnerService)
 {
     _hubService      = hubService;
     _hubOwnerService = hubOwnerService;
 }
Esempio n. 6
0
 public HubController(IHubOwnerService hubOwnerService, IHubService hubService, IUserProfileService userProfileService)
     : base(userProfileService)
 {
     _hubOwnerService = hubOwnerService;
     _hubService = hubService;
 }
Esempio n. 7
0
 public HubOwnerController(IHubOwnerService hubOwnerServiceParam)
 {
     this._hubOwnerService = hubOwnerServiceParam;
 }
 public HubOwnerController(IHubOwnerService hubOwnerServiceParam)
 {
     this._hubOwnerService = hubOwnerServiceParam;
 }