Example #1
0
 public CouveuseMixerDevice(AbstractCanComm CanComm, CouveuseMixer CouMixer)
 {
     this.CanComm  = CanComm;
     this.CouMixer = CouMixer;
 }
Example #2
0
 public CentrifugeMrg(AbstractCanComm CanComm, CentrifugeData CentrifugeDatas)
 {
     CentrifugeMDevice[] cents = { new CentrifugeMDevice(CanComm, CentrifugeDatas.Centrifuges[0]), new CentrifugeMDevice(CanComm, CentrifugeDatas.Centrifuges[1]) };
     this.CentrifugeMDevices = cents;
 }
Example #3
0
 public GelWarehouseDevice(AbstractCanComm CanComm, GelWarehouse GelWare)
 {
     this.CanComm = CanComm;
     this.GelWare = GelWare;
 }
Example #4
0
 public CentrifugeMDevice(AbstractCanComm CanComm, CentrifugeM Centrifugestem)
 {
     this.CanComm     = CanComm;
     this.Centrifugem = Centrifugestem;
 }
Example #5
0
 public OtherPartDevice(AbstractCanComm CanComm, OtherPart OP)
 {
     this.CanComm  = CanComm;
     this.OP       = OP;
     this.scanFlag = true;
 }
Example #6
0
 public PiercerDevice(AbstractCanComm CanComm, Piercer Pie)
 {
     this.CanComm = CanComm;
     this.Pie     = Pie;
 }
Example #7
0
 public CentrifugeDevice(AbstractCanComm CanComm, CentrifugeSystem CentSys)
 {
     this.CanComm     = CanComm;
     this.Centrifuges = CentSys.Centrifuges;
 }
Example #8
0
 public InjectorDevice(AbstractCanComm CanComm, Injector Injector)
 {
     this.Injector = Injector;
     this.CanComm  = CanComm;
 }
Example #9
0
 public MachineHandDevice(AbstractCanComm CanComm, MachineHand Hand)
 {
     this.CanComm = CanComm;
     this.Hand    = Hand;
 }