Exemple #1
0
 public void ACCatGastos(Gastos Datos)
 {
     try
     {
         Gastos_Datos GD = new Gastos_Datos();
         GD.ACCatGastos(Datos);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
Exemple #2
0
 public void EliminarGasto(Gastos Datos)
 {
     try
     {
         Gastos_Datos GD = new Gastos_Datos();
         GD.EliminarGasto(Datos);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
Exemple #3
0
 public List <Subrubro> ObtenerComboSubrubros(Subrubro Datos)
 {
     try
     {
         Gastos_Datos GD = new Gastos_Datos();
         return(GD.ObtenerComboSubrubros(Datos));
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }