public void ShowBatchHistoryViewer()
 {
     BatchHistoryViewer.ShowView();
     AssociateCollectionsAndRepositories();
 }
 public void ShowBatchHistoryViewerWithBatchNumber()
 {
     BatchHistoryViewer.IncomingBatchNumber = ImplementedBatchLedger[ImplementedBatchSelectedIndex].BatchNumber;
     BatchHistoryViewer.ShowView();
 }
 public bool BatchHistoryViewerIsSet()
 {
     return(BatchHistoryViewer != null &&
            BatchHistoryViewer.CanShowView());
 }