示例#1
0
 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;
 }
示例#3
0
 public WebContext(IHttpContextAccessor httpContextAccessor
                   , IMoxyAuth moxyAuth)
 {
     _httpContextAccessor = httpContextAccessor;
     _moxyAuth            = moxyAuth;
 }