예제 #1
0
 public void ValidarMateria(ref string Verificador, ref DetConcepto ObjConcepto)
 {
     try
     {
         CD_DetConcepto CDDetConcepto = new CD_DetConcepto();
         CDDetConcepto.ValidarMateria(ref ObjConcepto, ref Verificador);
     }
     catch (Exception ex)
     {
         throw new Exception(ex.Message);
     }
 }
예제 #2
0
 public void EliminarDetConcepto(ref string Verificador, ref DetConcepto ObjConcepto)
 {
     try
     {
         CD_DetConcepto CDDetConcepto = new CD_DetConcepto();
         CDDetConcepto.EliminarDetConcepto(ref Verificador, ref ObjConcepto);
     }
     catch (Exception ex)
     {
         throw new Exception(ex.Message);
     }
 }
예제 #3
0
 public void ConsultarDetConcepto(ref DetConcepto ObjDetConcepto, ref List <DetConcepto> List)
 {
     try
     {
         CD_DetConcepto CDDetConcepto = new CD_DetConcepto();
         CDDetConcepto.ConsultarDetConcepto(ref ObjDetConcepto, ref List);
     }
     catch (Exception ex)
     {
         throw new Exception(ex.Message);
     }
 }