예제 #1
0
파일: Shop.cs 프로젝트: s4egol/MyPatterns
        public void Operation1()
        {
            OrderBatchOfFlowers();
            Bouquet bouquet = ChooseTheBestBouquet();

            GiveBouquetToTheBuyer(bouquet);
        }
예제 #2
0
파일: Shop.cs 프로젝트: s4egol/MyPatterns
 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);
 }