示例#1
0
        public void SetStands(Lawyer myLawyer, List <Stand> aStand)
        {
            int numofStands = myLawyer.GetInt("How many lemonade stands do you want to create?");

            for (int i = 0; i < numofStands; i++)
            {
                var ownerStand = new Stand();
                Console.WriteLine("For Stand #" + (i + 1));
                ownerStand.Name = myLawyer.GetResponse("What do you want to name this lemonade stand?");

                ownerStand.Predictivesell = myLawyer.GetInt("How many cups do you plan to sell at this stand?");
                ownerStand.Price          = myLawyer.GetDecimal("How much do you want to charge for cup of lemonade at this stand?");
                ownerStand.OwnerLoss      = myLawyer.GetDecimal("How much will this cost you per cup for this stand?");
                aStand.Add(ownerStand);
            }
        }
示例#2
0
        public List <Hotdog> SetStands(Lawyer myLawyer, List <Hotdog> aStand)
        {
            int numofStands = myLawyer.GetInt("How many " + Type + " stands do you want to create?");

            for (int i = 0; i < numofStands; i++)
            {
                var ownerStand = new Hotdog();
                Console.WriteLine("For Stand #" + (i + 1));
                ownerStand.Name = myLawyer.GetResponse("What do you want to name this " + Type + " stand?");

                ownerStand.Predictivesell = myLawyer.GetInt("How many " + Item + "s do you plan to sell at this stand?");
                ownerStand.Price          = myLawyer.GetDecimal("How much do you want to charge for a " + Item + " of " + Type + " at this stand?");
                ownerStand.OwnerLoss      = myLawyer.GetDecimal("How much will this cost you per " + Item + " for this stand?");
                aStand.Add(ownerStand);
            }
            return(aStand);
        }