Exemplo n.º 1
0
 public MinerController(MinerContext dbContext, FirewallService firewallService, PlotService plotService, PlotterService plotterService)
 {
     DbContext       = dbContext;
     FirewallService = firewallService;
     PlotService     = plotService;
     PlotterService  = plotterService;
 }
Exemplo n.º 2
0
 public PoolController(CustomizationOption customizationOptions, MinerContext dbContext, PlotService plotService, PlotterService plotterService)
 {
     CustomizationOptions = customizationOptions;
     DbContext            = dbContext;
     PlotService          = plotService;
     PlotterService       = plotterService;
 }
Exemplo n.º 3
0
 public PlotController(PlotService plotManager, StatusService statusService)
 {
     PlotManager   = plotManager;
     StatusService = statusService;
 }
Exemplo n.º 4
0
 public GetRanks(ILoggerFactory loggerFactory, ValorantApiService valorantApiService, PlotService plotService) : base(loggerFactory)
 {
     ValorantApiService = valorantApiService;
     PlotService        = plotService;
 }