示例#1
0
        public void GetShotsMenuOption()
        {
            switch (input)
            {
            case "1":
                humaneSociety.UpdateShots();
                break;

            case "2":
                humaneSociety.GetAnimalsWithShots();
                break;

            case "3":
                humaneSociety.GetAnimalsWithoutShots();
                break;

            default:
                break;
            }
        }