Пример #1
0
 public ChatController()
 {
     dbChat            = new DbChat();
     dbActivity        = new DbActivity();
     profileController = new ProfileController();
     groupController   = new GroupController();
 }
Пример #2
0
 public TrayIconBackgroundService(
     IHostApplicationLifetime host,
     IOptionsMonitor <Configuration> options,
     IProfileController profileController)
 {
     this.host              = host;
     this.options           = options;
     this.profileController = profileController;
 }
Пример #3
0
 public ProcessWatcherBackgroundService(
     ILogger <ProcessWatcherBackgroundService> logger,
     IOptionsMonitor <Configuration> options,
     IProfileController profileController)
 {
     this.logger            = logger;
     this.options           = options;
     this.profileController = profileController;
 }
Пример #4
0
 public GameController()
 {
     profileController = new ProfileController();
 }
Пример #5
0
 public GroupController()
 {
     dbGroup           = new DbGroup();
     dbActivity        = new DbActivity();
     profileController = new ProfileController();
 }