public SmartVouchersController(
     IVoucherOperationsStatisticService partnerStatisticService,
     IMapper mapper)
 {
     _partnerStatisticService = partnerStatisticService;
     _mapper = mapper;
 }
 public CustomerStatisticService(
     ICustomerRegistrationRepository customerRegistrationRepository,
     ICustomerActivityRepository customerActivityRepository,
     IVoucherOperationsStatisticService voucherOperationsStatisticService)
 {
     _customerRegistrationRepository    = customerRegistrationRepository;
     _customerActivityRepository        = customerActivityRepository;
     _voucherOperationsStatisticService = voucherOperationsStatisticService;
 }