Esempio n. 1
0
 public UsersService(
     UsersContext context,
     IUsersIntegrationEventService integrationEventService,
     ITagGeneratorService tagGeneratorService)
 {
     _context = context ?? throw new ArgumentNullException(nameof(context));
     _integrationEventService = integrationEventService ?? throw new ArgumentNullException(nameof(integrationEventService));
     _tagGeneratorService     = tagGeneratorService ?? throw new ArgumentNullException(nameof(tagGeneratorService));
 }
Esempio n. 2
0
 public NfcService(ITagGeneratorService tagGeneratorService)
 {
     _tagGeneratorService = tagGeneratorService;
 }