コード例 #1
0
 public ResourceSetController(
     IResourceSetActions resourceSetActions,
     IRepresentationManager representationManager)
 {
     _resourceSetActions    = resourceSetActions;
     _representationManager = representationManager;
 }
コード例 #2
0
 public ScopesController(
     IScopeActions scopeActions,
     IRepresentationManager representationManager)
 {
     _scopeActions          = scopeActions;
     _representationManager = representationManager;
 }
コード例 #3
0
 public ClientsController(
     IClientActions clientActions,
     IRepresentationManager representationManager)
 {
     _clientActions         = clientActions;
     _representationManager = representationManager;
 }
コード例 #4
0
 public UsersController(
     IUsersAction usersAction,
     IRepresentationManager representationManager)
 {
     _usersAction           = usersAction;
     _representationManager = representationManager;
 }
コード例 #5
0
 public PoliciesController(
     IPolicyActions policyActions,
     IRepresentationManager representationManager)
 {
     _policyActions         = policyActions;
     _representationManager = representationManager;
 }
コード例 #6
0
 public GroupsController(
     IGroupsAction groupsAction,
     IRepresentationManager representationManager)
 {
     _groupsAction          = groupsAction;
     _representationManager = representationManager;
 }
コード例 #7
0
 public CustomersController(IRepresentationManager representationManager)
 {
     _customers             = new List <Customer>();
     _representationManager = representationManager;
 }
コード例 #8
0
 public CustomersController(IRepresentationManager representationManager)
 {
     _customers = new List<Customer>();
     _representationManager = representationManager;
 }
コード例 #9
0
 public ManageController(IManageActions manageActions, IRepresentationManager representationManager)
 {
     _manageActions         = manageActions;
     _representationManager = representationManager;
 }
コード例 #10
0
 public RepresentationsController(IRepresentationManager representationManager)
 {
     _representationManager = representationManager;
 }