示例#1
0
文件: UIStep.cs 项目: parkheenam/test
 public UIStep(UIProcess process, string stepID, decimal sequence, string stepGroup)
 {
     this.Process   = process;
     this.StepID    = stepID;
     this.Sequence  = sequence;
     this.StepGroup = stepGroup;
 }
示例#2
0
        public UIProductDetail(ProductMaster productMaster, UIProcess process)
        {
            this.LineID      = productMaster.LINE_ID;
            this.ProductID   = productMaster.PRODUCT_ID;
            this.ProductName = productMaster.PRODUCT_NAME;

            if (this.ProductName == null)
            {
                this.ProductName = string.Empty;
            }

            this.Process  = process;
            this.DesignID = productMaster.DESIGN_ID;
        }