示例#1
0
 public int UpdatePassword(string UserName, string NewPassword)
 {
     try
     {
         DBA = new UserBLL();
         return(DBA.updatepasswordinuserbll(UserName, NewPassword));
     }
     catch (Exception)
     {
         throw;
     }
 }