public AccountController(ISystemService systemService , IMoxyAuth moxyAuth , IWebContext webContext ) { _systemService = systemService; _moxyAuth = moxyAuth; _webContext = webContext; }
/// <summary> /// SystemController /// </summary> public SystemController( IMoxyAuth moxyAuth , IWebContext webContext , ISystemService systemService , IConfigService configService ) { _moxyAuth = moxyAuth; _webContext = webContext; _systemService = systemService; _configService = configService; }
public WebContext(IHttpContextAccessor httpContextAccessor , IMoxyAuth moxyAuth) { _httpContextAccessor = httpContextAccessor; _moxyAuth = moxyAuth; }