コード例 #1
0
        public IList <DogDto> GetDogs(DogDto dog)
        {
            List <DogDto> dogs = new List <DogDto>();

            dogs.Add(new DogDto()
            {
                Name = "DummyDog"
            });

            return(dogs);
        }
コード例 #2
0
 public void UpdateDog(DogDto dog)
 {
     throw new System.NotImplementedException();
 }
コード例 #3
0
 public void PutDogToSleep(DogDto dog)
 {
     throw new System.NotImplementedException();
 }
コード例 #4
0
 public DogDto CreateDog(DogDto dog)
 {
     throw new System.NotImplementedException();
 }