Пример #1
0
 public Flower()
 {
     Type        = FlowerType.Mixed;
     Color       = FlowerColor.Mixed;
     Arrangement = FlowerArrangement.Vase;
     pc          = 0.00M;
 }
Пример #2
0
 public Flower(FlowerType type, FlowerColor color,
               FlowerArrangement argn, decimal price)
 {
     Type        = type;
     Color       = color;
     Arrangement = argn;
     pc          = price;
 }