public IEnumerable <Pet> OrderByPrice()
 {
     return(FakeDB.OrderByPrice());
 }
 public IEnumerable <Pet> GetOneTypeOfPets(string type)
 {
     return(FakeDB.GetOneTypeOfPets(type));
 }
 public void UpdatePet(int petId, string name, string type, DateTime birthDate, DateTime soldDate, string color, string privousOwner, double price)
 {
     FakeDB.UpdatePet(petId, name, type, birthDate, soldDate, color, privousOwner, price);
 }
 public void deletePet(int PetID)
 {
     FakeDB.deletePet(PetID);
 }
 public Pet AddPet(Pet pet)
 {
     return(FakeDB.AddPet(pet));
 }
 public IEnumerable <Pet> ReadPets()
 {
     return(FakeDB.GetAllPets());
 }