/// <summary>
 /// the constructor creates a new instance of a controller
 /// </summary>
 public AccountController()
 {
     _Repo    = new AuthentificationRepository();
     _SecRepo = new RoleRightRepository();
 }
Beispiel #2
0
 /// <summary>
 /// the constructor creates a new instance of the controller
 /// </summary>
 public ServiceController()
 {
     _Repo    = new ServiceRepository();
     _SecRepo = new RoleRightRepository();
 }
Beispiel #3
0
 public DataLocationTypeController()
 {
     _Repo    = new DataLocationTypeRepository();
     _SecRepo = new RoleRightRepository();
 }
Beispiel #4
0
 public CertificateController()
 {
     _Repo    = new CertificateRepository();
     _SecRepo = new RoleRightRepository();
 }
 public StorageTypeController()
 {
     _Repo    = new StorageTypeRepository();
     _SecRepo = new RoleRightRepository();
 }
 public ProviderController()
 {
     _Repo    = new ProviderRepository();
     _SecRepo = new RoleRightRepository();
 }
 /// <summary>
 /// the constructor creates a new instance of the controller
 /// </summary>
 public RelationalDatabaseServiceController()
 {
     _Repo    = new RelationalDatabaseServiceRepository();
     _SecRepo = new RoleRightRepository();
 }
 /// <summary>
 /// the constructor creates a new instance of the controller
 /// </summary>
 public DirectAttachedStorageServiceController()
 {
     _Repo    = new DirectAttachedStorageServiceRepository();
     _SecRepo = new RoleRightRepository();
 }
 /// <summary>
 /// the constructor creates a new instance of the controller
 /// </summary>
 public KeyValueStoreServiceController()
 {
     _Repo    = new KeyValueStoreServiceRepository();
     _SecRepo = new RoleRightRepository();
 }
 /// <summary>
 /// the constructor creates a new instance of the controller
 /// </summary>
 public OnlineDriveStorageServiceController()
 {
     _Repo    = new OnlineDriveStorageServiceRepository();
     _SecRepo = new RoleRightRepository();
 }
Beispiel #11
0
 /// <summary>
 /// the controller provides endpoints for usecase manipulation
 /// </summary>
 public UseCaseController()
 {
     _Repo    = new UseCaseRepository();
     _SecRepo = new RoleRightRepository();
 }
Beispiel #12
0
 public DeploymentInformationController()
 {
     _Repo    = new DeploymentInformationRepository();
     _SecRepo = new RoleRightRepository();
 }
 /// <summary>
 /// the constructor creates a new instance of the controller
 /// </summary>
 public ObjectStorageServiceController()
 {
     _Repo    = new ObjectStorageServiceRepository();
     _SecRepo = new RoleRightRepository();
 }
Beispiel #14
0
 /// <summary>
 /// the constructor creates a new instance of the controller
 /// </summary>
 public BlockStorageServiceController()
 {
     _Repo    = new BlockStorageServiceRepository();
     _SecRepo = new RoleRightRepository();
 }