public ActionResult <Voucher> PostVoucher(VoucherCreateRequest entity)
        {
            bool success = _voucherSer.Create(entity);

            if (success)
            {
                return(Ok(entity));
            }
            return(Problem("Create failed!"));
        }