Beispiel #1
0
        public void Update(NippsLog t)
        {
            //only CheckedBy field can be updated by the requester!!!
            NippsLog oldLog = NippsLogDao.Get(t.LogId);

            oldLog.CheckedBy = t.CheckedBy;
            NippsLogDao.Update(oldLog);
        }
Beispiel #2
0
 public NippsLog Get(int id)
 {
     return(NippsLogDao.Get(id));
 }