Ejemplo n.º 1
0
 private void AddCategoriesToLibrary(LiveCategory categories)
 {
     if (categories == null)
     {
         return;
     }
     ProjectInfo.Current.ListCategories.Add(categories);
 }
Ejemplo n.º 2
0
 private void RemoveCategoriesFromLibrary(LiveCategory category)
 {
     if (ProjectInfo.Current.ListCategories.Count == 0 || category == null)
     {
         return;
     }
     ProjectInfo.Current.ListCategories.Remove(category);
 }
Ejemplo n.º 3
0
 public LiveCategoryAdapterInfo(LiveCategory message)
     : base(message)
 {
 }