public NotificationRoleController(
     INotificationRoleService notificationRoleService,
     IMeetingService meetingService,
     ILogService logService,
     ILoggerFactory logger,
     IAuthenticationService authenticationService,
     IMeetingAttachmentService meetingAttachmentService)
 {
     _notificationRoleService = notificationRoleService;
     _meetingService          = meetingService;
     _logService               = logService;
     _authenticationService    = authenticationService;
     _meetingAttachmentService = meetingAttachmentService;
     _logger = logger.CreateLogger("NotificationRoleController");
 }
Example #2
0
 public ReminderController(
     IReminderService reminderService,
     INotificationTypeService notificationTypeService,
     INotificationRoleService notificationRoleService,
     IMeetingService meetingService,
     ILogService logService,
     ILoggerFactory logger,
     IAuthenticationService authenticationService,
     IMeetingAttachmentService meetingAttachmentService)
 {
     _reminderService         = reminderService;
     _notificationTypeService = notificationTypeService;
     _meetingService          = meetingService;
     _logService               = logService;
     _authenticationService    = authenticationService;
     _meetingAttachmentService = meetingAttachmentService;
     _logger = logger.CreateLogger("ReminderController");
 }
Example #3
0
 public SubscriptionController(
     ISubscriptionService subscriptionService,
     INotificationTypeService notificationTypeService,
     INotificationRoleService notificationRoleService,
     IMeetingService meetingService,
     ILogService logService,
     ILoggerFactory logger,
     IAuthenticationService authenticationService,
     IMeetingAttachmentService meetingAttachmentService)
 {
     _subscriptionService     = subscriptionService;
     _notificationTypeService = notificationTypeService;
     _meetingService          = meetingService;
     _logService               = logService;
     _authenticationService    = authenticationService;
     _meetingAttachmentService = meetingAttachmentService;
     _logger = logger.CreateLogger("SubscriptionController");
 }