示例#1
0
        public static Dog GetDog(int id)
        {
            Dog dog = Dogs.FirstOrDefault(x => x._Id == id.ToString());

            return(dog);
        }