public VoucherBatchesController(IVoucherBatchService voucherBatchService, ITripService tripService, ICruiseService cruiseService, IVoucherTemplateService voucherTemplateService, IVoucherCodeService voucherCodeService)
 {
     _voucherBatchService = voucherBatchService;
     _tripService = tripService;
     _cruiseService = cruiseService;
     _voucherTemplateService = voucherTemplateService;
     _voucherCodeService = voucherCodeService;
 }
 public VoucherBatchService(IVoucherBatchRepository voucherBatchRepository, IUnitOfWork unitOfWork, IVoucherCodeService voucherCodeService)
 {
     VoucherBatchRepository = voucherBatchRepository;
     UnitOfWork = unitOfWork;
     VoucherCodeService = voucherCodeService;
 }