public NotificationTypeController(
     ILoggerServices loggerServices,
     IUserServices userService,
     IUserDepartmentServices userDepartmentServices,
     INotificationTypeService notificationTypeService
     ) : base(loggerServices, userService, userDepartmentServices)
 {
     _notificationTypeService = notificationTypeService;
 }
示例#2
0
 public LoginController(IUserService userService, IMenuService menuService,
                        INotificationCategoryService ncService, INotificationTypeService ntService,
                        IDeviceTypeService dtService, IMapper mapper)
 {
     this.userService = userService;
     this.menuService = menuService;
     this.ncService   = ncService;
     this.ntService   = ntService;
     this.dtService   = dtService;
     this.mapper      = mapper;
 }
示例#3
0
 public NotificationServices(
     IDbContextScopeFactory dbContextScopeFactory,
     INotificationRepository notificationRepository,
     INotificationSettingRepository notificationSettingRepository,
     IMapper mapper, ISystemConfigServices systemConfigServices, ILoggerServices loggerServices, INotificationTypeService notificationTypeService)
 {
     _dbContextScopeFactory         = dbContextScopeFactory;
     _notificationRepository        = notificationRepository;
     _notificationSettingRepository = notificationSettingRepository;
     _mapper = mapper;
     _systemConfigServices    = systemConfigServices;
     _loggerServices          = loggerServices;
     _notificationTypeService = notificationTypeService;
 }
 public NotificationTypeController(
     INotificationTypeService notificationTypeService,
     INotificationRoleService notificationRoleService,
     IMeetingService meetingService,
     ILogService logService,
     ILoggerFactory logger,
     IAuthenticationService authenticationService,
     IMeetingAttachmentService meetingAttachmentService)
 {
     _notificationTypeService = notificationTypeService;
     _meetingService          = meetingService;
     _logService               = logService;
     _authenticationService    = authenticationService;
     _meetingAttachmentService = meetingAttachmentService;
     _logger = logger.CreateLogger("NotificationTypeController");
 }
示例#5
0
 public NotificationsController(INotificationService notificationService, IMapper mapper, INotificationTypeService notificationTypeService)
 {
     _notificationService = notificationService;
     _mapper = mapper;
     _notificationTypeService = notificationTypeService;
 }
示例#6
0
 public NotificationTypeController(INotificationTypeService notificationTypeService, IMapper mapper)
 {
     _notificationTypeService = notificationTypeService;
     _mapper = mapper;
 }
 public NotificationTypesController(INotificationTypeService typeService)
 {
     _typeService = typeService;
 }