public List <VBG00890Result> FormaPago_Listar(int idEmpresa, int codigoUsuario)
        {
            FormaPagoBL objFormaPagoBL;

            try {
                objFormaPagoBL = new FormaPagoBL();
                return(objFormaPagoBL.FormaPago_Listar(idEmpresa, codigoUsuario));
            }
            catch (Exception ex) {
                throw ex;
            }
        }
Exemple #2
0
 public IList <FormaPagoInfo> ObtenerTodos()
 {
     try
     {
         Logger.Info();
         var bl     = new FormaPagoBL();
         var result = bl.ObtenerTodos();
         return(result);
     }
     catch (ExcepcionGenerica)
     {
         throw;
     }
     catch (Exception ex)
     {
         Logger.Error(ex);
         throw new ExcepcionDesconocida(MethodBase.GetCurrentMethod(), ex);
     }
 }