public IHttpActionResult GetVoucherModel(int id) { Voucher voucherModel = voucherService.GetVoucher(id); if (voucherModel == null) { return(NotFound()); } return(Ok(voucherModel)); }