コード例 #1
0
ファイル: API.cs プロジェクト: seanadipose/embc-ess-mod
 public async Task <ActionResult <IEnumerable <Jurisdiction> > > GetJurisdictions([FromQuery] JurisdictionType[] types, [FromQuery] string countryCode = "CAN", [FromQuery] string stateProvinceCode = "BC")
 {
     return((await locationQueriesService.GetJurisdictions(types, countryCode, stateProvinceCode)).ToArray());
 }