예제 #1
0
 public ArticleController(IEzine ezine, ISection section, IArticle article)
 {
     ezineRepository = ezine;
     sectionRepository = section;
     articleRepository = article;
 }
예제 #2
0
 public HomeController(IEzine ezineRepository)
 {
     repository = ezineRepository;
 }
예제 #3
0
 public SectionController(IEzine ezine, ISection section)
 {
     ezineRepository = ezine;
     sectionRepository = section;
 }