Exemple #1
0
 public SystemConfigController(
     ILoggerServices loggerServices,
     IUserServices userService,
     IUserDepartmentServices userDepartmentServices,
     ISystemConfigServices systemConfigService
     ) : base(loggerServices, userService, userDepartmentServices)
 {
     _systemConfigService = systemConfigService;
 }
Exemple #2
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;
 }