Ejemplo n.º 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);
        }
Ejemplo n.º 2
0
 private void ShowInfo(int _id)
 {
     BLL.service   bll   = new BLL.service();
     Model.service model = bll.GetModel(_id);
     txtName.Text = model.name;
 }