Example #1
0
 public CommandEditPost(CommandsListAdapter parent, Post[] items, int index)
     : base(parent)
 {
     this.items = items;
     this.index = index;
 }
Example #2
0
 public CommandRemovePost(CommandsListAdapter parent, Post item)
     : base(parent)
 {
     this.item = item;
 }
Example #3
0
 public CommandAddPost(CommandsListAdapter parent, Post item)
     : base(parent)
 {
     this.items = new Post[] { item };
 }
Example #4
0
 public CommandAddPost(CommandsListAdapter parent, Post[] items)
     : base(parent)
 {
     this.items = items;
 }
Example #5
0
 protected CommandsList(CommandsListAdapter parent)
 {
     this.parent = parent;
 }