Example #1
0
 public void InsertCategory(int index, Category category)
 {
     Categories.Insert(index, category);
 }
Example #2
0
 public void RemoveCategory(Category category)
 {
     Categories.Remove(category);
 }
Example #3
0
 public void AddCategory(Category category)
 {
     Categories.Add(category);
 }