コード例 #1
0
ファイル: HomeController.cs プロジェクト: vashisht/Ninja
 public HomeController(IRepository repository, NinjaLista.Web.CaptchaServices.ICaptchaService captchaService,IAdminRepository adminrepository)
 {
     _Repository = repository;
     _adminRepository = adminrepository;
     this.captchaService = captchaService;
 }
コード例 #2
0
ファイル: HomeController.cs プロジェクト: vashisht/Ninja
 public HomeController(IRepository repository, NinjaLista.Web.CaptchaServices.ICaptchaService captchaService)
 {
     _Repository = repository;
     this.captchaService = captchaService;
 }
コード例 #3
0
 public HomeController(IRepository repository, NinjaLista.Web.CaptchaServices.ICaptchaService captchaService)
 {
     _Repository         = repository;
     this.captchaService = captchaService;
 }
コード例 #4
0
ファイル: HomeController.cs プロジェクト: vashisht/Ninja
 public HomeController(IRepository repository, NinjaLista.Web.CaptchaServices.ICaptchaService captchaService, IAdminRepository adminrepository)
 {
     _Repository         = repository;
     _adminRepository    = adminrepository;
     this.captchaService = captchaService;
 }