Пример #1
0
        //---------------------------------------------------------------------------------------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);
        }