public EditableList ()
 {
     this.Build ();
     this.editable_helper = new EditableHelper(table);
     this.IsEditable = false;
     this.DestroyTableChildren ();
 }
 public VictimShow ()
 {
     this.Build ();
     this.editable_helper = new EditableHelper(this);
     this.IsEditable = false;
     this.ConnectPerpetratorHandlers ();
 }
 public InstitutionShow ()
 {
     this.Build ();
     this.editable_helper = new EditableHelper(this);
     this.isEditing = false;
     ConnectInstitutionRelationshipsHandlers ();
     ConnectInstitutionPeopleHandlers ();
 }
 public CaseShow ()
 {
     this.Build ();
     this.editable_helper = new EditableHelper(this);
     this.isEditing = false;
     ConnectActsHandlers();
     ConnectTrackingHandlers ();
     ConnectPlacesHandlers();
     ConnectDocumentarySourceHandlers();
     ConnectInformationSourceHandlers();
     ConnectCaseRelationshipHandlers();
     ConnectInterventionsHandlers();
 }
 public InterventionShow ()
 {
     this.Build ();
     this.editable_helper = new EditableHelper(this);
 }
 public TrackingShow ()
 {
     this.Build ();
     this.editable_helper = new EditableHelper(this);
 }
 public ActsShow ()
 {
     this.Build ();
     this.editable_helper = new EditableHelper(this);
     this.isEditable = false;
 }
 public CaseRelationshipShow ()
 {
     this.Build ();
     this.editable_helper = new EditableHelper(this);
 }
 public CasePerInstitution ()
 {
     this.Build ();
     this.editable_helper = new EditableHelper(this);
 }
 public PlaceShow ()
 {
     this.Build ();
     this.editable_helper = new EditableHelper(this);
 }
 public CasePerPerson ()
 {
     this.Build ();
     this.editable_helper = new EditableHelper(this);
 }
 public AddressShow ()
 {
     this.Build ();
     this.editable_helper = new EditableHelper(this);
 }
 public InformationSourceShow ()
 {
     this.Build ();
     this.editable_helper = new EditableHelper(this);
 }
 public InstitutionPersonShow ()
 {
     this.Build ();
     this.editable_helper = new EditableHelper(this);
 }
 public InstitutionRelationshipShow ()
 {
     this.Build ();
     this.editable_helper = new EditableHelper(this);
 }