@infosel-sdk/funds
Version:
SDK de Fondos para la plataforma de servicios financieros Infosel
17 lines • 637 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.GetFundHistoricalPricesUseCase = void 0;
const core_1 = require("@infosel-sdk/core");
class GetFundHistoricalPricesUseCase {
constructor(repository) {
this.repository = repository;
}
execute(request) {
if (!request) {
throw new core_1.SdkError(core_1.SdkErrorType.REQUEST_OBJECT_IS_REQUIRED);
}
return this.repository.getFundHistoricalPrices(request);
}
}
exports.GetFundHistoricalPricesUseCase = GetFundHistoricalPricesUseCase;
//# sourceMappingURL=get_fund_historical_prices_use_case.js.map