Beispiel #1
0
 public bool AddNewPet(Pet pet)
 {
     _validator.PetValidation(pet);
     return(_petRepository.AddNewPet(pet));
 }