コード例 #1
0
ファイル: AccountBL.cs プロジェクト: akshaytople/Akshaytt
        //---------------------------------------------------------------------------------------5)
        public bool ChangeBranch_BL(String CustomerID)     // Change Branch
        {
            bool res = false;

            if (ValidateCustID(CustomerID))
            {
                AccountDAL a = new AccountDAL();
                res = a.ChangeBranch_DAL(CustomerID);
            }
            return(res);
        }