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