public GiftVoucher(string code, string name, decimal value, VoucherSpecification voucherSpecification, VoucherApplyStrategy voucherApplyStrategy) : base(VoucherType.Gift, code, name, value, voucherSpecification, voucherApplyStrategy) { }
public Voucher(VoucherType voucherType, string code, string name, decimal value, VoucherSpecification voucherSpecification, VoucherApplyStrategy applyStrategy) { VoucherType = voucherType; Code = code; Name = name; Value = value; VoucherSpecification = voucherSpecification; ApplyStrategy = applyStrategy; }