@infosel-sdk/funds
Version:
SDK de Fondos para la plataforma de servicios financieros Infosel
24 lines • 729 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
class FundsRepositoryImpl {
constructor(datasource) {
this.datasource = datasource;
}
getFunds(request) {
return this.datasource.getFunds(request);
}
getFundProspectus(request) {
return this.datasource.getFundProspectus(request);
}
getFundYield(request) {
return this.datasource.getFundYield(request);
}
getFundHistoricalPrices(request) {
return this.datasource.getFundHistoricalPrices(request);
}
getAdministrators() {
return this.datasource.getAdministrators();
}
}
exports.default = FundsRepositoryImpl;
//# sourceMappingURL=funds_repository_impl.js.map