Exemplo n.º 1
0
 public UserController(IGetLoginTask getLoginTask,
                       IListUsersTask listUsersTask,
                       IGetUserTask getUserTask,
                       IAddUserTask addUserTask,
                       IUpdateUserTask updateUserTask,
                       ILoginUserTask loginUserTask,
                       ILogoutUserTask logoutUserTask,
                       IListUserAccountsTask listUserAccountsTask,
                       IGetUserAccountTask getUserAccountTask,
                       IAddUserAccountTask addUserAccountTask,
                       IUpdateUserAccountTask updateUserAccountTask,
                       IRemoveUserAccountTask removeUserAccountTask) :
     base(getLoginTask)
 {
     _listUsersTask         = listUsersTask;
     _getUserTask           = getUserTask;
     _addUserTask           = addUserTask;
     _updateUserTask        = updateUserTask;
     _loginUserTask         = loginUserTask;
     _logoutUserTask        = logoutUserTask;
     _listUserAccountsTask  = listUserAccountsTask;
     _getUserAccountTask    = getUserAccountTask;
     _addUserAccountTask    = addUserAccountTask;
     _updateUserAccountTask = updateUserAccountTask;
     _removeUserAccountTask = removeUserAccountTask;
 }
Exemplo n.º 2
0
 public InstallationController(IGetLoginTask getLoginTask,
                               IGetInstallationTask getInstallationTask,
                               ISeedSystemDataTask seedSystemDataTask) :
     base(getLoginTask)
 {
     _seedSystemDataTask  = seedSystemDataTask;
     _getInstallationTask = getInstallationTask;
 }
 public RecordLabelController(IGetLoginTask getLoginTask,
                              IListRecordLabelsTask listRecordLabelsTask,
                              IGetRecordLabelTask getRecordLabelTask,
                              IAddRecordLabelTask addRecordLabelTask,
                              IUpdateRecordLabelTask updateRecordLabelTask) :
     base(getLoginTask)
 {
     _listRecordLabelsTask  = listRecordLabelsTask;
     _getRecordLabelTask    = getRecordLabelTask;
     _addRecordLabelTask    = addRecordLabelTask;
     _updateRecordLabelTask = updateRecordLabelTask;
 }
Exemplo n.º 4
0
 public PublishingController(IGetLoginTask getLoginTask,
                             IListPerformingRightsOrganizationsTask listPerformingRightsOrganizationsTask,
                             IListPublishersTask listPublishersTask,
                             IGetPublisherTask getPublisherTask,
                             IAddPublisherTask addPublisherTask,
                             IUpdatePublisherTask updatePublisherTask) :
     base(getLoginTask)
 {
     _listPerformingRightsOrganizationsTask = listPerformingRightsOrganizationsTask;
     _listPublishersTask  = listPublishersTask;
     _getPublisherTask    = getPublisherTask;
     _addPublisherTask    = addPublisherTask;
     _updatePublisherTask = updatePublisherTask;
 }
Exemplo n.º 5
0
 public PlatformController(IGetLoginTask getLoginTask,
                           IListServicesTask listServicesTask,
                           IListPlatformsTask listPlatformsTask,
                           IGetPlatformTask getPlatformTask,
                           IAddPlatformTask addPlatformTask,
                           IUpdatePlatformTask updatePlatformTask) :
     base(getLoginTask)
 {
     _listServicesTask   = listServicesTask;
     _listPlatformsTask  = listPlatformsTask;
     _getPlatformTask    = getPlatformTask;
     _addPlatformTask    = addPlatformTask;
     _updatePlatformTask = updatePlatformTask;
 }
 public ArtistController(IGetLoginTask getLoginTask,
                         IListArtistsTask listArtistsTask,
                         IGetArtistTask getArtistTask,
                         IAddArtistTask addArtistTask,
                         IUpdateArtistTask updateArtistTask,
                         IListArtistAccountsTask listArtistAccountsTask,
                         IGetArtistAccountTask getArtistAccountTask,
                         IAddArtistAccountTask addArtistAccountTask,
                         IUpdateArtistAccountTask updateArtistAccountTask,
                         IRemoveArtistAccountTask removeArtistAccountTask,
                         IListArtistLinksTask listArtistLinksTask,
                         IGetArtistLinkTask getArtistLinkTask,
                         IAddArtistLinkTask addArtistLinkTask,
                         IUpdateArtistLinkTask updateArtistLinkTask,
                         IRemoveArtistLinkTask removeArtistLinkTask,
                         IListArtistMembersTask listArtistMembersTask,
                         IGetArtistMemberTask getArtistMemberTask,
                         IAddArtistMemberTask addArtistMemberTask,
                         IUpdateArtistMemberTask updateArtistMemberTask,
                         IListArtistManagersTask listArtistManagersTask,
                         IGetArtistManagerTask getArtistManagerTask,
                         IAddArtistManagerTask addArtistManagerTask,
                         IUpdateArtistManagerTask updateArtistManagerTask) :
     base(getLoginTask)
 {
     _listArtistsTask         = listArtistsTask;
     _getArtistTask           = getArtistTask;
     _addArtistTask           = addArtistTask;
     _updateArtistTask        = updateArtistTask;
     _listArtistAccountsTask  = listArtistAccountsTask;
     _getArtistAccountTask    = getArtistAccountTask;
     _addArtistAccountTask    = addArtistAccountTask;
     _updateArtistAccountTask = updateArtistAccountTask;
     _removeArtistAccountTask = removeArtistAccountTask;
     _listArtistLinksTask     = listArtistLinksTask;
     _getArtistLinkTask       = getArtistLinkTask;
     _addArtistLinkTask       = addArtistLinkTask;
     _updateArtistLinkTask    = updateArtistLinkTask;
     _removeArtistLinkTask    = removeArtistLinkTask;
     _listArtistMembersTask   = listArtistMembersTask;
     _getArtistMemberTask     = getArtistMemberTask;
     _addArtistMemberTask     = addArtistMemberTask;
     _updateArtistMemberTask  = updateArtistMemberTask;
     _listArtistManagersTask  = listArtistManagersTask;
     _getArtistManagerTask    = getArtistManagerTask;
     _addArtistManagerTask    = addArtistManagerTask;
     _updateArtistManagerTask = updateArtistManagerTask;
 }
 public InvitationController(IGetLoginTask getLoginTask,
                             ISendUserInvitationTask sendUserInvitationTask,
                             IResendUserInvitationTask resendUserInvitationTask,
                             IListUserInvitationsTask listUserInvitationsTask,
                             IGetUserInvitationTask getUserInvitationTask,
                             IAcceptUserInvitationTask acceptUserInvitationTask,
                             IRemoveUserInvitationTask removeUserInvitationTask) :
     base(getLoginTask)
 {
     _sendUserInvitationTask   = sendUserInvitationTask;
     _resendUserInvitationTask = resendUserInvitationTask;
     _listUserInvitationsTask  = listUserInvitationsTask;
     _getUserInvitationTask    = getUserInvitationTask;
     _acceptUserInvitationTask = acceptUserInvitationTask;
     _removeUserInvitationTask = removeUserInvitationTask;
 }
 protected ApiControllerBase(IGetLoginTask getLoginTask)
 {
     _getLoginTask = getLoginTask;
 }
Exemplo n.º 9
0
 public GeographicController(IGetLoginTask getLoginTask,
                             IListCountriesTask listCountriesTask) :
     base(getLoginTask)
 {
     _listCountriesTask = listCountriesTask;
 }