示例#1
0
        public async Task <ActionResult <IEnumerable <Gift> > > GetAllGiftVouchers([FromQuery] string merchantId)
        {
            var gifts = await baseVoucherService.GetAllGiftVouchers(merchantId);

            return(new OkObjectResult(gifts));
        }