Example #1
0
 public MeetingActionController(
     IMeetingActionService meetingActionService,
     IAuthenticationService authenticationService,
     ILogService logService,
     ILoggerFactory logger)
 {
     _meetingActionService  = meetingActionService;
     _authenticationService = authenticationService;
     _logService            = logService;
     _logger = logger.CreateLogger("MeetingActionController");
 }
Example #2
0
 public MeetingController(IMeetingService meetingService, IMeetingActionService meetingActionService)
 {
     _meetingService       = meetingService ?? throw new ArgumentNullException(nameof(meetingService));
     _meetingActionService = meetingActionService ?? throw new ArgumentNullException(nameof(meetingActionService));
 }