Example #1
0
 public void DEL_Factura(int Codigo_Factura, int Codigo_Centro_Atencion)
 {
     try
     {
         LOG_Factura Logica = new LOG_Factura();
         Logica.DEL_Factura(Codigo_Factura, Codigo_Centro_Atencion);
     }
     catch (Exception )
     {
         throw ;
     }
 }
Example #2
0
        public Boolean CRE_Factura(MOD_Factura obj)
        {
            try
            {
                LOG_Factura Logica = new LOG_Factura();
                Logica.CRE_Factura(obj);
                return true;
            }
            catch (Exception )
            {
                return false;
                throw ;

            }
        }
Example #3
0
 public List<MOD_Factura> SEL_GRID_Factura()
 {
     try
     {
         LOG_Factura logica = new LOG_Factura();
         List<MOD_Factura> Lista = logica.SEL_Grid_Factura();
         return Lista;
     }
     catch (Exception )
     {
         throw ;
     }
 }
Example #4
0
 public void UPD_Factura(MOD_Factura obj)
 {
     try
     {
         LOG_Factura Logica = new LOG_Factura();
         Logica.UPD_Factura(obj);
     }
     catch (Exception )
     {
         throw ;
     }
 }
Example #5
0
 public MOD_Factura SEL_GRID_BY_ID_Factura(int Codigo_Factura, int Codigo_Centro_Atencion)
 {
     try
     {
         LOG_Factura logica = new LOG_Factura();
         MOD_Factura obj = logica.SEL_Grid_By_Id_Factura(Codigo_Factura, Codigo_Centro_Atencion);
         return obj;
     }
     catch (Exception )
     {
         throw ;
     }
 }