Esempio n. 1
0
 public void ValidarConcepto(ref ConceptoPago ConceptoPago, ref string Verificador, ref string Mensaje)
 {
     try
     {
         CD_ConceptoPago CDConceptoPago = new CD_ConceptoPago();
         CDConceptoPago.ValidarConcepto(ref ConceptoPago, ref Verificador, ref Mensaje);
     }
     catch (Exception ex)
     {
         throw new Exception(ex.Message);
     }
 }
Esempio n. 2
0
 public void ConfigurarConceptoPago(ref ConceptoPago ConceptoPago, ref string Verificador)
 {
     try
     {
         CD_ConceptoPago CDConceptoPago = new CD_ConceptoPago();
         CDConceptoPago.ConfigurarConceptoPago(ref ConceptoPago, ref Verificador);
     }
     catch (Exception ex)
     {
         throw new Exception(ex.Message);
     }
 }
Esempio n. 3
0
 public void InsertarConceptoPago(ref string Verificador, ref List <ConceptoPago> List)
 {
     try
     {
         CD_ConceptoPago CDConceptoPago = new CD_ConceptoPago();
         CDConceptoPago.InsertarConceptoPago(ref Verificador, ref List);
     }
     catch (Exception ex)
     {
         throw new Exception(ex.Message);
     }
 }
Esempio n. 4
0
 public void EliminarConceptoPago(ref string Verificador, ref ConceptoPago ObjConcepto)
 {
     try
     {
         CD_ConceptoPago CDConceptoPago = new CD_ConceptoPago();
         CDConceptoPago.EliminarConceptoPago(ref Verificador, ref ObjConcepto);
     }
     catch (Exception ex)
     {
         throw new Exception(ex.Message);
     }
 }
Esempio n. 5
0
 public void ConsultarConceptoPago(ref ConceptoPago ObjConceptoPago, ref List <ConceptoPago> List)
 {
     try
     {
         CD_ConceptoPago CDConceptoPago = new CD_ConceptoPago();
         CDConceptoPago.ConsultarConceptoPago(ref ObjConceptoPago, ref List);
     }
     catch (Exception ex)
     {
         throw new Exception(ex.Message);
     }
 }