コード例 #1
0
        //
        #region Consultar Listas
        protected List <Tratamiento> GetDataTratamiento()
        {
            List <Tratamiento> datos;

            try
            {
                datos = new LogicaTratamiento().ConsultarTratamientoNoAsociado(tratamiento.Id);
            }
            catch (Exception e)
            {
                datos      = null;
                error.Text = e.Message;
            }
            return(datos);
        }
コード例 #2
0
 //
 protected void Agregar_FinishButtonClick(object sender, WizardNavigationEventArgs e)
 {
     try
     {
         tratamiento = new Tratamiento(0, NombreTratamiento.Text, Convert.ToInt16(Duracion.Text), Convert.ToInt16(Costo.Text),
                                       Descripcion.Text, Explicacion.Text, "Activo"); tratamiento.Imagen = "No contiene imagen";
         LogicaTratamiento logicatratamiento = new LogicaTratamiento();
         logicatratamiento.AgregarTratamiento(tratamiento, _ImplementoAsociado, _TratamientoAsociado);
         Response.Redirect("HomeTratamiento.aspx");
     }
     catch (NullReferenceException ex)
     {
         error.Text = ex.Message;
     }
     catch (IndexOutOfRangeException ex)
     {
         error.Text = ex.Message;
     }
     catch (Exception ex)
     {
         error.Text = ex.Message;
     }
 }