示例#1
0
        public bool UserRegistrationBLL(string Username, string Password)
        {
            bool IsUserReg = false;

            try
            {
                return(dAL.UserDAL(Username, Password));
            }
            catch
            {
            }
            return(IsUserReg);
        }