public async Task <ApiResponse <RentProductsOutput> > RentProducts([FromBody] RentProductsInput input)
 {
     return(await _rentManipulationController.RentProducts(input));
 }
Ejemplo n.º 2
0
 public async Task <ApiResponse <RentProductsOutput> > RentProducts(RentProductsInput input)
 {
     return(await ApiResponses.GetUseCaseInteractorResponse <RentProductsRequirement, RentProductsResult, RentProductsInput, RentProductsOutput>(_useCasesInteractor.RentProducts, input));
 }