Beispiel #1
0
 public ABTestController(IABTestsService abTestsService, IABTestsRepository abTestsRepository, UserManager <ApplicationUser> userManager)
 {
     this.abTestsService    = abTestsService;
     this.abTestsRepository = abTestsRepository;
     this.userManager       = userManager;
 }
Beispiel #2
0
 public ABTestsService(IHostingEnvironment hostingEnvironment, IABTestsRepository abTestsRepository)
 {
     this.hostingEnvironment = hostingEnvironment;
     this.abTestsRepository  = abTestsRepository;
 }
Beispiel #3
0
 public HomeController(IABTestsRepository abTestsRepository, UserManager <ApplicationUser> userManager)
 {
     this.abTestsRepository = abTestsRepository;
     this.userManager       = userManager;
 }