Пример #1
0
        public IHttpActionResult GetVoucherModel(int id)
        {
            Voucher voucherModel = voucherService.GetVoucher(id);

            if (voucherModel == null)
            {
                return(NotFound());
            }

            return(Ok(voucherModel));
        }