public string AssociatedPartyAction(
     string ChildId,
     string SelectedPartyId,
     string Action,
     string Relationship)
 {
     ChildDetails.AssociatedPartyAction(ChildId, SelectedPartyId, Action, Relationship);
     return(LoadControlsPresentation.GetAssociations(ChildId));
 }
 public JsonResult GetEvents(string ChildId)
 {
     return(Json(LoadControlsPresentation.GetEvents(ChildId)));
 }
 public JsonResult GetRelationships()
 {
     return(Json(LoadControlsPresentation.GetRelationships()));
 }
 public string GetAssociations(string ChildId)
 {
     return(LoadControlsPresentation.GetAssociations(ChildId));
 }
 public JsonResult GetParties()
 {
     return(Json(LoadControlsPresentation.GetParties()));
 }