Example #1
0
        public void ModifyCaseList(l3.cargo.corba.XCase xCase)
        {
            base.caseList.Modify(xCase.getId(), xCase.getContainerId(), xCase.getConveyanceId(), string.Empty, string.Empty, 0, xCase.getCaseDir(), false,
                                 (Int32)WorkstationDecision.Unknown, DateTime.Now, false, null, DateTime.Parse(xCase.getCreateTime()), xCase.getCurrentArea(), false, string.Empty, false);

            CaseListUpdateEvent(xCase.getId(), String.Empty, xCase.getCurrentArea(), true);
        }
Example #2
0
 public void DeleteFromCaseList(l3.cargo.corba.XCase xCase)
 {
     lock (_updateCaseAssignmentLock)
     {
         base.caseList.Delete(xCase.getId());
         CaseListUpdateEvent(xCase.getId(), String.Empty, xCase.getCurrentArea(), false);
     }
 }