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