Example #1
0
 public IssueWorkListVm(IWorkList workList)
 {
     CurrentWorkList = workList;
     CurrentWorkList.GoNext();
     CurrentWorkItem = new IssueWorkItemVm(CurrentWorkList.Current as IssueItem);
 }
 public SelectionWorkListVm(IWorkList workList)
 {
     CurrentWorkList = workList;
     CurrentWorkList.GoNext();
     CurrentWorkItem = new SelectionWorkItemVm(CurrentWorkList.Current as SelectionItem);
 }