Exemplo n.º 1
0
 public ArticleController(IEzine ezine, ISection section, IArticle article)
 {
     ezineRepository = ezine;
     sectionRepository = section;
     articleRepository = article;
 }
Exemplo n.º 2
0
 public HomeController(IEzine ezineRepository)
 {
     repository = ezineRepository;
 }
Exemplo n.º 3
0
 public SectionController(IEzine ezine, ISection section)
 {
     ezineRepository = ezine;
     sectionRepository = section;
 }