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