2 using System.Collections.Generic;
5 using System.Threading.Tasks;
8 namespace GUI.Datatypes
37 public ProductCB(String name,
MachineCB m,
double bauteilwechselphase,
double hos,
double qualirate) : base()
41 this.ThreeState =
false;
46 qualitaetsrate = qualirate;
MachineCB getMachine()
Grants access to the machine this product is meant to be produced on.
double qualitaetsrate
Qualityrate in percent.
void addProduct(ProductCB prod)
Add a product to this machine.
A wrapper class for products.
double Bauteilwechselphase
A number that describes the time needed to change toolkits on this machine (in minutes).
MachineCB machine
Machine this product is produced on.
double hoS
Value for "Huebe ohne Stoerung".
ProductCB(String name, MachineCB m, double bauteilwechselphase, double hos, double qualirate)
The Constructor.
A wrapper class for machines.