//conts public FillingStart(EquipamentType typeEq, string Product) { this.eq = this.eqFact.ConstructEquipament(typeEq); this.infos = BasicInfoClass.GetBasicInfo(); this.prod = ProductClass.GetProductClass(); this.tank = TankClass.GetTankClass(); this.convert = new Convertion(typeEq); this.errorlog = new ErrorLog(); }
public EndFilling(EquipamentType typeEq, bool checkBreak) { this.eq = this.eqFact.ConstructEquipament(typeEq); this.infos = BasicInfoClass.GetBasicInfo(); this.tank = TankClass.GetTankClass(); this.convert = new Convertion(typeEq); this.errorlog = new ErrorLog(); this.checkBreak = checkBreak; //this.logAction = new //logAction(); }
public ZeroLoadCell(EquipamentType typeEq) { //ID da Operação - cada operação possui um ID exceto a incial(BeginOfMAnipulation) // e a ZeroLoadCell this.operationID = "2"; this.tank = TankClass.GetTankClass(); this.basicInfo = BasicInfoClass.GetBasicInfo(); this.eq = this.eqFact.ConstructEquipament(typeEq); errorlog = new ErrorLog(); this.convert = new Convertion(typeEq); this.logAction = new LogAction(); }
public TankFinalWeight(EquipamentType typeEq, string OperationName, bool checkBreak) { //ID da Operação - cada operação possui um ID exceto a incial(BeginOfMAnipulation) this.operationID = "11"; this.eq = this.eqFact.ConstructEquipament(typeEq); this.OperationName = OperationName; this.checkBreak = checkBreak; this.infos = BasicInfoClass.GetBasicInfo(); this.tanks = TankClass.GetTankClass(); this.errorlog = new ErrorLog(); this.convert = new Convertion(typeEq); //this.logAction = new //logAction(); }