コード例 #1
0
ファイル: AnimalService.cs プロジェクト: mimustafa/HelloWorld
 public GetDogResp GetDog(GetDogReq req)
 {
     return(new GetDogResp()
     {
         Dog = new API.Contracts.Dog.Model.Dog()
         {
             Color = "Black"
         }
     });
 }
コード例 #2
0
ファイル: AnimalService.cs プロジェクト: mimustafa/HelloWorld
 public GetDogResp GetDog(GetDogReq req) => Process <GetDogReq, GetDogResp>(req);