Beispiel #1
0
        private bool DoEdit(int _id)
        {
            bool result = true;

            BLL.service   bll   = new BLL.service();
            Model.service model = bll.GetModel(_id);

            model.name = txtName.Text.Trim();

            if (!bll.Update(model))
            {
                result = false;
            }

            return(result);
        }