コード例 #1
0
ファイル: SchoolAPI.cs プロジェクト: XxshiftxX/schapi-cs
        public Dictionary <int, Menu> GetMonthlyMenus(int year, int month)
        {
            var document = ResponseParser.GetDocumentFromURL(GetMonthlyMealsURL(year, month));

            return(MealParser.GetMenusFromDocument(document));
        }