private void CollectionWindow_DeleteRow(object sender, GenericArrayEventArgs <int> e)
 {
     foreach (ulong id in e.Value)
     {
         this.Delete().ID(collectionObject.Records[id].ID).Execute();
     }
     this.collectionObject.Refresh();
 }
 private void Window_DeleteRow(object sender, GenericArrayEventArgs <int> e)
 {
     //throw new NotImplementedException();
 }