コード例 #1
0
ファイル: ApiAccessService.cs プロジェクト: SvenHerr/mobile
        public IEnumerable <Mentor> GetMentors()
        {
            var mentorsString = _loadService.GetTextFromEmbeddedResource("mentors.json");
            var mentors       = JsonConvert.DeserializeObject <IEnumerable <Mentor> >(mentorsString);

            return(mentors);
        }