Ejemplo n.º 1
0
        public void Operation1()
        {
            OrderBatchOfFlowers();
            Bouquet bouquet = ChooseTheBestBouquet();

            GiveBouquetToTheBuyer(bouquet);
        }
Ejemplo n.º 2
0
 protected void GiveBouquetToTheBuyer(Bouquet bouquet)
 {
     Console.WriteLine("The bouquet ( {0} flowers, {1}$ price and wrapper - {2} ) give to the buyer",
                       bouquet.CountOfFlowers, bouquet.PriceInDollars, bouquet.Wrapper);
 }