Exemplo n.º 1
0
 public SectionController(
     IPageService pageService,
     ISectionService sectionService,
     ISimpleTextService simpleTextService,
     ICollectionService collectionService,
     INodeService nodeService)
 {
     _pageService       = pageService;
     _sectionService    = sectionService;
     _simpleTextService = simpleTextService;
     _collectionService = collectionService;
     _nodeService       = nodeService;
 }
Exemplo n.º 2
0
 public SimpleTextServiceTest()
 {
     _db      = new NocturnoContext(true);
     _service = new SimpleTextService(_db);
 }
Exemplo n.º 3
0
 public SimpleTextController(ISimpleTextService simpleTextService)
 {
     _simpleTextService = simpleTextService;
 }