public TechnologyFactory(
     int compPrice,
     int tvPrice,
     int detailsCount,
     CompleteSetType completeSet
     )
 {
     this.completeSet  = completeSet;
     this.compPrice    = compPrice;
     this.tvPrice      = tvPrice;
     this.detailsCount = detailsCount;
 }
Ejemplo n.º 2
0
 public ChinaFactory(int compPrice, int tvPrice, int detailsCount, CompleteSetType completeSet) :
     base(compPrice, tvPrice, detailsCount, completeSet)
 {
 }