public void UnsubscribeFromStateUpdates(Archive.ReportStateChange methodToUnsubscribe)
 {
     archive.OnStateChange -= methodToUnsubscribe;
 }
 public void SubscribeToStateUpdates(Archive.ReportStateChange methodToSubscribe)
 {
     archive.OnStateChange += methodToSubscribe;
 }