コード例 #1
0
 public ArticleController(IEzine ezine, ISection section, IArticle article)
 {
     ezineRepository = ezine;
     sectionRepository = section;
     articleRepository = article;
 }
コード例 #2
0
ファイル: HomeController.cs プロジェクト: JSoon/EzineMetroUI
 public HomeController(IEzine ezineRepository)
 {
     repository = ezineRepository;
 }
コード例 #3
0
 public SectionController(IEzine ezine, ISection section)
 {
     ezineRepository = ezine;
     sectionRepository = section;
 }