public VoucherAppService(IVoucherService voucherService, IVoucherRepository voucherRepository, IVoucherHistoricDataRepository voucherHistoricDataRepository, IVoucherHistoricDataService voucherHistoricDataService) { VoucherService = voucherService; VoucherRepository = voucherRepository; VoucherHistoricDataService = voucherHistoricDataService; VoucherHistoricDataRepository = voucherHistoricDataRepository; }
public VoucherHistoricDataService(IVoucherHistoricDataRepository voucherHistoricDataRepository) { repository = voucherHistoricDataRepository; }