public GroupRoomsService(
     UsersContext context,
     IUsersIntegrationEventService integrationEventService)
 {
     _context = context ?? throw new ArgumentNullException(nameof(context));
     _integrationEventService = integrationEventService ?? throw new ArgumentNullException(nameof(integrationEventService));
 }
Example #2
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));
 }