Example #1
0
 public void DEL_Forma_Pago(int Codigo_Forma_Pago, int Codigo_Centro_Atencion)
 {
     try
     {
         LOG_Forma_Pago Logica = new LOG_Forma_Pago();
         Logica.DEL_Forma_Pago(Codigo_Forma_Pago, Codigo_Centro_Atencion);
     }
     catch (Exception )
     {
         throw ;
     }
 }
Example #2
0
        public Boolean CRE_Forma_Pago(MOD_Forma_Pago obj)
        {
            try
            {
                LOG_Forma_Pago Logica = new LOG_Forma_Pago();
                Logica.CRE_Forma_Pago(obj);
                return true;
            }
            catch (Exception )
            {
                return false;
                throw ;

            }
        }
Example #3
0
 public List<MOD_Forma_Pago> SEL_GRID_Forma_Pago(int Centro_Atencion, string buscar)
 {
     try
     {
         LOG_Forma_Pago logica = new LOG_Forma_Pago();
         List<MOD_Forma_Pago> Lista = logica.SEL_Grid_Forma_Pago(Centro_Atencion, buscar);
         return Lista;
     }
     catch (Exception )
     {
         throw ;
     }
 }
Example #4
0
 public void UPD_Forma_Pago(MOD_Forma_Pago obj)
 {
     try
     {
         LOG_Forma_Pago Logica = new LOG_Forma_Pago();
         Logica.UPD_Forma_Pago(obj);
     }
     catch (Exception )
     {
         throw ;
     }
 }
Example #5
0
 public MOD_Forma_Pago SEL_GRID_BY_ID_Forma_Pago(int Codigo_Forma_Pago)
 {
     try
     {
         LOG_Forma_Pago logica = new LOG_Forma_Pago();
         MOD_Forma_Pago obj = logica.SEL_Grid_By_Id_Forma_Pago(Codigo_Forma_Pago);
         return obj;
     }
     catch (Exception )
     {
         throw ;
     }
 }