Beispiel #1
0
        public override bool Equals(object obj)
        {
            MesScmsStationBox another = obj as MesScmsStationBox;

            if (another == null)
            {
                return(false);
            }
            else
            {
                return(this.Id == another.Id);
            }
        }
 public virtual void UpdateMesScmsStationBox(MesScmsStationBox entity)
 {
     entityDao.Update(entity);
 }
 public void Complete(MesScmsStationBox mesScmsStationBox)
 {
     mesScmsStationBox.Flag = MesDssConstants.MES_SCMS_FLAG_SCMS_UPDATED;
     this.UpdateMesScmsStationBox(mesScmsStationBox);
 }