public async Task <ActionResult <IEnumerable <Discount> > > GetAllDiscountVouchers([FromQuery] string merchantId) { var discounts = await baseVoucherService.GetAllDiscountVouchers(merchantId); return(new OkObjectResult(discounts)); }