public PrivateController(IPrivateServerService privateServerService,
                          IRateLimiterService rateLimiterService,
                          ITorCheckService torCheckService,
                          ICustomMapService customMapService,
                          ILogger <PrivateController> logger)
 {
     _privateServerService = privateServerService;
     _rateLimiterService   = rateLimiterService;
     _torCheckService      = torCheckService;
     _customMapService     = customMapService;
     _logger = logger;
 }
 public CustomMapsController(ICustomMapService customMapService)
 {
     _customMapService = customMapService;
 }