Ejemplo n.º 1
0
        public override bool Equals(object obj)
        {
            MesScmsStationShelf another = obj as MesScmsStationShelf;

            if (another == null)
            {
                return(false);
            }
            else
            {
                return(this.ShelfNo == another.ShelfNo);
            }
        }
 public virtual void UpdateMesScmsStationShelf(MesScmsStationShelf entity)
 {
     entityDao.Update(entity);
 }
 public void Complete(MesScmsStationShelf mesScmsStationShelf)
 {
     mesScmsStationShelf.Flag = MesDssConstants.MES_SCMS_FLAG_SCMS_UPDATED;
     this.UpdateMesScmsStationShelf(mesScmsStationShelf);
 }