Ejemplo n.º 1
0
        public bool UpdateUserPassword(string Id, string Password)
        {
            bool Result = false;

            try
            {
                Result = _userData.UpdateUserPassword(Id, Password);
            }
            catch (Exception)
            {
            }
            return(Result);
        }