コード例 #1
0
ファイル: MenuService.cs プロジェクト: periface/SapTam
 private async Task CreateSectionContents(IEnumerable <CategoryContent> contents, MenuSection section)
 {
     foreach (var categoryContent in contents)
     {
         var sectionContent = MenuSectionContent.CreateMenuSectionContent(categoryContent.Lang,
                                                                          DynamicCreated, section);
         await _menuManager.AddSectionContentAsync(sectionContent);
     }
 }