Exemple #1
0
        public Pet DeleteByID(int id)
        {
            if (id < 0)
            {
                throw new Exception("Please, enter a valid value for the ID");
            }

            return(_petRepo.DeleteByID(id));
        }