示例#1
0
        public override bool Equals(object obj)
        {
            MesScmsShelfPart another = obj as MesScmsShelfPart;

            if (another == null)
            {
                return(false);
            }
            else
            {
                return(this.ShelfNo == another.ShelfNo && this.ItemCode == another.ItemCode);
            }
        }
 public virtual void UpdateMesScmsShelfPart(MesScmsShelfPart entity)
 {
     entityDao.Update(entity);
 }
 public void Complete(MesScmsShelfPart mesScmsShelfPart)
 {
     mesScmsShelfPart.Flag = MesDssConstants.MES_SCMS_FLAG_SCMS_UPDATED;
     this.UpdateMesScmsShelfPart(mesScmsShelfPart);
 }