Example #1
0
        private void GuardaProrroga()
        {
            if (cboTipo.SelectedIndex == -1)
            {
                MessageBox.Show("Debe seleccionar el Tipo", "Mensaje", MessageBoxButtons.OK, MessageBoxIcon.Warning);
            }
            else
            {
                BLL.Tables.HC      _prorrogas = new BLL.Tables.HC();
                Entities.Tables.HC _item      = new Entities.Tables.HC();

                _item.PACIENTE_ID = Clases.Paciente.PacienteIngresado;
                _item.USUARIO_ID  = Clases.Usuario.UsuarioLogeado.id_usuario_Logeado;
                _item.FECHA       = DateTime.Now;
                _item.TEXTO       = this.txtProrroga.Text;
                if (cboTipo.SelectedIndex == 0)
                {
                    _item.TIPO = "RE";
                }
                if (cboTipo.SelectedIndex == 1)
                {
                    _item.TIPO = "PR";
                }

                _prorrogas.AddItem(_item);
                MessageBox.Show("Se agrego correctamente un nuevo registro", "Mensaje", MessageBoxButtons.OK, MessageBoxIcon.Information);
                //Datos();
                TraeProrrogas();
                //this.Close();
            }
        }
        private void GuardaEpicrisis()
        {
            BLL.Tables.HC      _prorrogas = new BLL.Tables.HC();
            Entities.Tables.HC _item      = new Entities.Tables.HC();

            _item.PACIENTE_ID = Clases.Paciente.PacienteIngresado;
            _item.USUARIO_ID  = Clases.Usuario.UsuarioLogeado.id_usuario_Logeado;
            _item.FECHA       = DateTime.Now;
            _item.TEXTO       = this.txtEpicrisis.Text;
            _item.TIPO        = "EP";

            _prorrogas.AddItem(_item);
            MessageBox.Show("Se agrego correctamente un nuevo registro", "Mensaje", MessageBoxButtons.OK, MessageBoxIcon.Information);
            //Datos();
            TraeEpicrisis();
            //this.Close();
        }