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 IList <DogDto> GetDogs(DogDto dog)
        {
            List <DogDto> dogs = new List <DogDto>();

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

            return(dogs);
        }
 public DogDto CreateDog(DogDto dog)
 {
     throw new System.NotImplementedException();
 }
 public void UpdateDog(DogDto dog)
 {
     throw new System.NotImplementedException();
 }
 public void PutDogToSleep(DogDto dog)
 {
     throw new System.NotImplementedException();
 }
Exemplo n.º 6
0
 public void PutDogToSleep(DogDto dog)
 {
     throw new System.NotImplementedException();
 }
Exemplo n.º 7
0
 public void UpdateDog(DogDto dog)
 {
     throw new System.NotImplementedException();
 }
Exemplo n.º 8
0
 public DogDto CreateDog(DogDto dog)
 {
     throw new System.NotImplementedException();
 }