Пример #1
0
 public PagePresenterService(AppDbContext db, IMapper mapper, MarkdownService markdown, RelationsPresenterService relations)
 {
     _db        = db;
     _mapper    = mapper;
     _markdown  = markdown;
     _relations = relations;
 }
Пример #2
0
 public PagePresenterService(AppDbContext db, MarkdownService markdown, RelationsPresenterService relations, TreePresenterService tree)
 {
     _db        = db;
     _markdown  = markdown;
     _relations = relations;
     _tree      = tree;
 }