コード例 #1
0
ファイル: AccountController.cs プロジェクト: uc-dgt/remotelab
 public AccountController()
 {
     this.Auth = ObjectFactory.GetInstance <IDirectoryServices>();
     this.Svc  = ObjectFactory.GetInstance <RemoteLabService>();
 }
コード例 #2
0
ファイル: ClaimsUtility.cs プロジェクト: uc-dgt/remotelab
 public ClaimsUtility( IDirectoryServices Auth, IEnumerable<Pool> Pools, string AdministratorGroup)
 {
     this.Pools = Pools;
     this.Auth = Auth;
     this.AdminGroup = AdministratorGroup;
 }
コード例 #3
0
ファイル: AccountController.cs プロジェクト: uc-dgt/remotelab
 public AccountController(IDirectoryServices Auth, RemoteLabService Svc)
 {
     this.Auth = Auth;
     this.Svc  = Svc;
 }
コード例 #4
0
 public ADGroupValidationAttribute()
 {
     this.Auth = new ActiveDirectory(Properties.Settings.Default.ActiveDirectoryDNSDomain);
 }
コード例 #5
0
        public const string APPLICATION_POOL_USER          = "******";           // User of at least 1 pool

        public ClaimsUtility(IDirectoryServices Auth, IEnumerable <Pool> Pools, string AdministratorGroup)
        {
            this.Pools      = Pools;
            this.Auth       = Auth;
            this.AdminGroup = AdministratorGroup;
        }
コード例 #6
0
ファイル: AccountController.cs プロジェクト: uc-dgt/remotelab
 public AccountController()
 {
     this.Auth = ObjectFactory.GetInstance<IDirectoryServices>();
     this.Svc = ObjectFactory.GetInstance<RemoteLabService>();
 }
コード例 #7
0
ファイル: AccountController.cs プロジェクト: uc-dgt/remotelab
 public AccountController(IDirectoryServices Auth, RemoteLabService Svc) 
 {
     this.Auth = Auth;
     this.Svc = Svc;
 }