public static Dog GetDog(int id) { Dog dog = Dogs.FirstOrDefault(x => x._Id == id.ToString()); return(dog); }