//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 BeginOfManipulation(EquipamentType typeEq, string OperationName, string Product)
 {
     this.eq            = this.eqFact.ConstructEquipament(typeEq);
     this.OperationName = OperationName;
     this.prod          = ProductClass.GetProductClass();
     this.basicInfo     = BasicInfoClass.GetBasicInfo();
     this.errorlog      = new ErrorLog();
     this.convert       = new Convertion(typeEq);
     this.logAction     = new LogAction();
 }
 public RecirculationHoseDrain(EquipamentType typeEq)
 {
     //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.prod          = ProductClass.GetProductClass();
     this.infos         = BasicInfoClass.GetBasicInfo();
     this.convert       = new Convertion(typeEq);
     this.errorlog      = new ErrorLog();
     //this.logAction = new //logAction();
 }
Exemple #4
0
 public TempMonitoringClass(EquipamentType typeEq, bool checkBreak)
 {
     //ID da Operação - cada operação possui um ID exceto a incial
     this.operationID = "4";
     this.eq          = this.eqFact.ConstructEquipament(typeEq);
     this.shaker      = ShakerClass.GetShakerClass();
     this.prod        = ProductClass.GetProductClass();
     this.basicInfo   = BasicInfoClass.GetBasicInfo();
     this.errorlog    = new ErrorLog();
     this.convert     = new Convertion(typeEq);
     this.checkBreak  = checkBreak;
     //this.logAction = new //logAction();
 }