Esempio n. 1
0
 public ScopeClient(IAddScopeOperation addScopeOperation, IDeleteScopeOperation deleteScopeOperation, IGetAllScopesOperation getAllScopesOperation, IGetScopeOperation getScopeOperation,
                    IUpdateScopeOperation updateScopeOperation, IConfigurationClient configurationClient, ISearchScopesOperation searchScopesOperation)
 {
     _addScopeOperation     = addScopeOperation;
     _deleteScopeOperation  = deleteScopeOperation;
     _getAllScopesOperation = getAllScopesOperation;
     _getScopeOperation     = getScopeOperation;
     _updateScopeOperation  = updateScopeOperation;
     _configurationClient   = configurationClient;
     _searchScopesOperation = searchScopesOperation;
 }
Esempio n. 2
0
 public ScopeActions(
     IDeleteScopeOperation deleteScopeOperation,
     IGetScopeOperation getScopeOperation,
     IGetScopesOperation getScopesOperation,
     IAddScopeOperation addScopeOperation,
     IUpdateScopeOperation updateScopeOperation,
     ISearchScopesOperation searchScopesOperation)
 {
     _deleteScopeOperation  = deleteScopeOperation;
     _getScopeOperation     = getScopeOperation;
     _getScopesOperation    = getScopesOperation;
     _addScopeOperation     = addScopeOperation;
     _updateScopeOperation  = updateScopeOperation;
     _searchScopesOperation = searchScopesOperation;
 }