Exemplo n.º 1
0
 public IndexerCommand(CommandEntryList parent, Post[] items, int index)
     : base(parent)
 {
     this.items = items;
     this.index = index;
 }
Exemplo n.º 2
0
 public RemoveAtCommand(CommandEntryList parent, Post item)
     : base(parent)
 {
     this.item = item;
 }
Exemplo n.º 3
0
 public AddCommand(CommandEntryList parent, Post item)
     : base(parent)
 {
     this.items = new Post[] { item };
 }
Exemplo n.º 4
0
 public AddCommand(CommandEntryList parent, Post[] items)
     : base(parent)
 {
     this.items = items;
 }
Exemplo n.º 5
0
 protected Command(CommandEntryList parent)
 {
     this.parent = parent;
 }