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