public List <TipoFuenteBE> ListarTipoFuente(TipoFuenteBE entidad) { List <TipoFuenteBE> Lista = null; try { using (IDbConnection db = new OracleConnection(CadenaConexion)) { string sp = sPackage + "USP_SEL_LISTA_TIPO_FUENTE"; var p = new OracleDynamicParameters(); p.Add("pRefcursor", dbType: OracleDbType.RefCursor, direction: ParameterDirection.Output); Lista = db.Query <TipoFuenteBE>(sp, p, commandType: CommandType.StoredProcedure).ToList(); } } catch (Exception ex) { Log.Error(ex); } return(Lista); }
public static List <TipoFuenteBE> ListarTipoFuente(TipoFuenteBE entidad) { return(tipoFuente.ListarTipoFuente(entidad)); }