Esempio n. 1
0
 public void InsertarEstructuraProg(Presupues ObjPresupuesto, ref string Verificador)
 {
     try
     {
         CD_Presupuesto DatosPresupuesto = new CD_Presupuesto();
         DatosPresupuesto.InsertarEstructuraProgramatica(ObjPresupuesto, ref Verificador);
     }
     catch (Exception ex)
     {
         throw new Exception(ex.Message);
     }
 }
Esempio n. 2
0
 public void PresupuestoConsultaGrid(ref Presupues ObjPresupuesto, ref List <Presupues> List)
 {
     try
     {
         CD_Presupuesto DatosPresupuesto = new CD_Presupuesto();
         DatosPresupuesto.PresupuestoConsultaGrid(ref ObjPresupuesto, ref List);
     }
     catch (Exception ex)
     {
         throw new Exception(ex.Message);
     }
 }