/// <summary> /// Создаёт железные сковородки /// </summary> /// <param name="count"> Количество посуды </param> /// <returns> Посуду </returns> public Dish CreateBlackBigIronPan(int count) { Dish answer; DishBuilder dishBuilder = new DishBuilder(); dishBuilder.setCapacity(10); dishBuilder.setColor("black"); dishBuilder.setMaterial("iron"); dishBuilder.setPrice(70); answer = new Pan(dishBuilder.GetDishCharacteristics(), _lastId, count); _lastId++; return(answer); }
static void printPan(Pan thisPan) { if (thisPan.IsInduction == true) { Console.WriteLine("Индукционная сковородка:"); } else { Console.WriteLine("Неиндукционная сковородка:"); } Console.WriteLine("В количестве - " + thisPan.GetDishCount()); Console.WriteLine("Айди выпуска - " + thisPan.GetDishId()); Console.WriteLine("Материал - " + thisPan.GetDishCharacteristics().material); Console.WriteLine("Вместимость - " + thisPan.GetDishCharacteristics().capacity); Console.WriteLine("Цвет - " + thisPan.GetDishCharacteristics().color); Console.WriteLine("Цена - " + thisPan.GetDishCharacteristics().price); }