Exemplo n.º 1
0
        public bool ChangePassword(string guid, string password)
        {
            bool result = false;

            UserHibernate hibernate = new UserHibernate();
            result = hibernate.ChangePassword(guid, password);

            return result;
        }