public async Task <ApiResponse <GetRentForecastPriceOutput> > GetRentForecastPrice([FromBody] GetRentForecastPriceInput input)
 {
     return(await _rentManipulationController.GetRentForecastPrice(input));
 }
Exemplo n.º 2
0
 public async Task <ApiResponse <GetRentForecastPriceOutput> > GetRentForecastPrice(GetRentForecastPriceInput input)
 {
     return(await ApiResponses.GetUseCaseInteractorResponse <GetRentForecastPriceRequirement, GetRentForecastPriceResult, GetRentForecastPriceInput, GetRentForecastPriceOutput>(_useCasesReadOnlyInteractor.GetRentForecastPrice, input));
 }