예제 #1
0
 public async Task IndustryTeams()
 {
     IndustryTeamCollection response = await crest.GetRoot().QueryAsync(r => r.Industry.Teams);
 }
예제 #2
0
        public async Task GetIndustryTeam()
        {
            IndustryTeamCollection teams = await crest.GetIndustryTeamsAsync();

            IndustryTeam result = await crest.GetIndustryTeamAsync(teams.Items.Last().Id);
        }
예제 #3
0
 public async Task GetIndustryTeamAuctions()
 {
     IndustryTeamCollection result = await crest.GetIndustryTeamAuctionsAsync();
 }
예제 #4
0
        public async Task GetIndustryTeams()
        {
            IndustryTeamCollection result = await crest.GetIndustryTeamsAsync();

            Console.Write(result);
        }