public HubOwnerController(IHubOwnerService hubOwnerServiceParam, IUserProfileService userProfileService) : base(userProfileService) { this._hubOwnerService = hubOwnerServiceParam; }
public HubController(IHubOwnerService hubOwnerService, IHubService hubService, IUserProfileService userProfileService) : base(userProfileService) { _hubOwnerService = hubOwnerService; _hubService = hubService; }
public HubController(IHubOwnerService hubOwnerService, IHubService hubService) { _hubOwnerService = hubOwnerService; _hubService = hubService; }
public HubsController(IHubService hubService, IHubOwnerService hubOwnerService) { _hubService = hubService; _hubOwnerService = hubOwnerService; }
public HubOwnerController(IHubOwnerService hubOwnerServiceParam) { this._hubOwnerService = hubOwnerServiceParam; }