コード例 #1
0
 public TestAnswersController(ITestingPlatform testingPlatform,
                              IHostingEnvironment appEnvironment,
                              UserManager <AppUser> userManager,
                              IOptions <PhotoConfig> photoConfig)
 {
     _testingPlatform = testingPlatform;
     _appEnvironment  = appEnvironment;
     _userManager     = userManager;
     _photoConfig     = photoConfig;
 }
コード例 #2
0
 public TestResultsController(ITestingPlatform testingPlatform, UserManager <AppUser> userManager)
 {
     _testingPlatform = testingPlatform;
     _userManager     = userManager;
 }
コード例 #3
0
ファイル: HomeController.cs プロジェクト: VadimMatyrin/TestMe
 public HomeController(ITestingPlatform testingPlatform, UserManager <AppUser> userManager, IOptions <LoadConfig> loadConfig)
 {
     _testingPlatform = testingPlatform;
     _userManager     = userManager;
     _loadConfig      = loadConfig;
 }
コード例 #4
0
 public UserAnswersController(ITestingPlatform testingPlatform, UserManager <AppUser> userManager)
 {
     _testingPlatform = testingPlatform;
     _userManager     = userManager;
 }