Example #1
0
 public void EliminarGastosXID(EM_Gastos Datos)
 {
     try
     {
         EM_GastosDatos GD = new EM_GastosDatos();
         GD.EliminarGastosXID(Datos);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
Example #2
0
 public List <EM_Gastos> ObtenerGastos(EM_Gastos Datos)
 {
     try
     {
         EM_GastosDatos GD = new EM_GastosDatos();
         return(GD.ObtenerGastos(Datos));
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
Example #3
0
 public void ObtenerDetalleGastosXID(EM_Gastos Datos)
 {
     try
     {
         EM_GastosDatos GD = new EM_GastosDatos();
         GD.ObtenerDetalleGastosXID(Datos);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
Example #4
0
 public void ACGastos(EM_Gastos Datos)
 {
     try
     {
         EM_GastosDatos GD = new EM_GastosDatos();
         GD.ACGastos(Datos);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }