Exemplo n.º 1
0
 public CheckAccessService(ICheckAccessRepository checkRepository,
                           ISubscriptionService subscriptionService,
                           ITransactionRepository transactionRepository,
                           IServiceRepository serviceRepository)
 {
     this.checkRepository       = checkRepository;
     this.subscriptionService   = subscriptionService;
     this.transactionRepository = transactionRepository;
     this.serviceRepository     = serviceRepository;
 }
Exemplo n.º 2
0
 public StatisticService(ISubscriptionRepository subscriptionRepository,
                         ICheckAccessRepository checkRepository,
                         IServiceRepository serviceRepository,
                         IStatisticRepository statisticRepository)
 {
     this.subscriptionRepository = subscriptionRepository;
     this.checkRepository        = checkRepository;
     this.serviceRepository      = serviceRepository;
     this.statisticRepository    = statisticRepository;
 }