Exemplo n.º 1
0
        public bool UpdateUser()
        {
            bool status = false;
            UserDAL user = new UserDAL();

            try
            {
                LumexDBPlayer db = LumexDBPlayer.Start(true);
                status = user.UpdateUser(this, db);
                db.Stop();
            }
            catch (Exception)
            {
                throw;
            }
            finally
            {
                user = null;
            }
            return status;
        }