Exemple #1
0
 public ProxyService(
     ef.HolePunchContext context,
     IProxyServerHub proxyServerHub,
     ICidrGroupService cidrGroupService,
     IUserGroupService userGroupService,
     IUserService userService)
 {
     _context          = context;
     _proxyServerHub   = proxyServerHub;
     _cidrGroupService = cidrGroupService;
     _userGroupService = userGroupService;
     _userService      = userService;
 }
Exemple #2
0
 public CidrGroupController(ILogger <ServiceController> logger, ICidrGroupService cidrGroupService)
 {
     _logger           = logger;
     _cidrGroupService = cidrGroupService;
 }