public IList <DogDto> GetDogs(DogDto dog)
        {
            List <DogDto> dogs = new List <DogDto>();

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

            return(dogs);
        }
 public void UpdateDog(DogDto dog)
 {
     throw new System.NotImplementedException();
 }
 public void PutDogToSleep(DogDto dog)
 {
     throw new System.NotImplementedException();
 }
 public DogDto CreateDog(DogDto dog)
 {
     throw new System.NotImplementedException();
 }