Exemplo n.º 1
0
        public ArticleService(AngularWikiDbContext dbContext)
        {
            _dbContext = dbContext;

            _articleRepository    = new ArticleRepository(dbContext);
            _articleTagRepository = new ArticleTagRepository(dbContext);
        }
 public ArticleTagRepository(AngularWikiDbContext dbContext)
 {
     _dbContext = dbContext;
 }
Exemplo n.º 3
0
 public ArticleController(AngularWikiDbContext dbContext)
 {
     DbContext = dbContext;
 }
Exemplo n.º 4
0
 public ArticleTagService(AngularWikiDbContext dbContext)
 {
     _dbContext = dbContext;
 }