コード例 #1
0
ファイル: CustomerUC.cs プロジェクト: jwalke24/Rent-Me
 private void proccessAdminParent(AdminUC adminUc)
 {
     if (adminUc != null && adminUc.theSession.IsAdmin && adminUc.theSession.IsAuthenticated)
     {
         this.theSession = adminUc.theSession;
         this.verifyAdminButtonsMainState();
     }
 }
コード例 #2
0
ファイル: MainWindow.cs プロジェクト: jwalke24/Rent-Me
        private void displayNewAdmin()
        {
            var adminUc = new AdminUC(this.createNewDataGridView(), this.loginSession);

            this.userControlStack.Add(adminUc);

            this.addUCToDisplay(adminUc);
        }
コード例 #3
0
ファイル: CustomerUC.cs プロジェクト: jwalke24/Rent-Me
 private void proccessAdminParent(AdminUC adminUc)
 {
     if (adminUc != null && adminUc.theSession.IsAdmin && adminUc.theSession.IsAuthenticated)
     {
         this.theSession = adminUc.theSession;
         this.verifyAdminButtonsMainState();
     }
 }