Esempio n. 1
0
 private void AddCategories(List <CategoryModel> categories, int gameId)
 {
     if (categories != null)
     {
         foreach (var category in categories)
         {
             _gameManager.AddCategoryToGameByDescription(gameId, category.Description);
         }
         ;
     }
 }