public async Task <IActionResult> DeleteSingleRelation([FromBody] SingleRelation relation)
 {
     return(PersonRelationship.DeleteRelation(relation).Result.ErrorCode == ErrorList.OK
         ? Ok("Relation Deleted")
         : NotFound("relation was not found"));
 }