Exemplo n.º 1
0
 public bool UpdateUserPassword(string userId, string password)
 {
     UserDAL user = new UserDAL();
     bool status = false;
     try
     {
         LumexDBPlayer db = LumexDBPlayer.Start(true);
         user.UpdateUserPassword(userId, password, db);
         status = true;
         db.Stop();
     }
     catch (Exception)
     {
         throw;
     }
     finally
     {
         user = null;
     }
     return status;
 }