Inheritance: EntityBase
Example #1
0
        public override bool Equals(object obj)
        {
            MesScmsBom another = obj as MesScmsBom;

            if (another == null)
            {
                return(false);
            }
            else
            {
                return(this.Bom == another.Bom && this.ItemCode == another.ItemCode && this.ProductLine == another.ProductLine && this.TagNo == another.TagNo);
            }
        }
Example #2
0
 public virtual void UpdateMesScmsBom(MesScmsBom entity)
 {
     entityDao.Update(entity);
 }
Example #3
0
 public void Complete(MesScmsBom mesScmsStationBox)
 {
     mesScmsStationBox.Flag = MesDssConstants.MES_SCMS_FLAG_SCMS_UPDATED;
     this.UpdateMesScmsBom(mesScmsStationBox);
 }