public DemoController(ContentStackController ContentStackController) : base(ContentStackController, ContentType, Entry)
 {
     Console.WriteLine("Full Constructor");
 }
Ejemplo n.º 2
0
 public PageBaseController(ContentStackController ContentStackController, string ContentType, string Entry)
 {
     _ContentStackController = ContentStackController;
     _ContentType            = ContentType;
     _Entry = Entry;
 }