Exemplo n.º 1
0
 public CustomerStatisticService(
     ICustomerRegistrationRepository customerRegistrationRepository,
     ICustomerActivityRepository customerActivityRepository)
 {
     _customerRegistrationRepository = customerRegistrationRepository;
     _customerActivityRepository     = customerActivityRepository;
 }
 public CustomerStatisticService(
     ICustomerRegistrationRepository customerRegistrationRepository,
     ICustomerActivityRepository customerActivityRepository,
     IVoucherOperationsStatisticService voucherOperationsStatisticService)
 {
     _customerRegistrationRepository    = customerRegistrationRepository;
     _customerActivityRepository        = customerActivityRepository;
     _voucherOperationsStatisticService = voucherOperationsStatisticService;
 }