Exemplo n.º 1
0
        public IList <DogDto> GetDogs(DogDto dog)
        {
            List <DogDto> dogs = new List <DogDto>();

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

            return(dogs);
        }
Exemplo n.º 2
0
 public void UpdateDog(DogDto dog)
 {
     throw new System.NotImplementedException();
 }
Exemplo n.º 3
0
 public void PutDogToSleep(DogDto dog)
 {
     throw new System.NotImplementedException();
 }
Exemplo n.º 4
0
 public DogDto CreateDog(DogDto dog)
 {
     throw new System.NotImplementedException();
 }