コード例 #1
0
 public PetType ReadPetTypeByID(int id)
 {
     if (id < 0)
     {
         throw new Exception("Please, enter a valid value for the ID");
     }
     return(_petTypeRepo.ReadPetTypeByID(id));
 }