Ejemplo n.º 1
0
        public JsonResult GetVoucherByVoucherNumberByCustomer(string voucherNumber, Guid customerId)
        {
            var vouchers =
                VoucherService.QueryVouchersByVoucherNumberByCustomer(GetHttpClient(), voucherNumber, customerId);

            return(Json(vouchers, JsonRequestBehavior.AllowGet));
        }