public PetType AddPetType(PetType petType)
 {
     return(FakeDB.AddPetType(petType));
 }
示例#2
0
 public Owner AddOwner(Owner owner)
 {
     return(FakeDB.AddOwner(owner));
 }
 public Pet AddPet(Pet pet)
 {
     return(FakeDB.AddPet(pet));
 }