public string ConfirmMember(int id)
 {
     return(_memberRepository.ConfirmMember(id, User.Identity.GetUserId()) ? "Member was approved successfully" : "There was an error approving this member check the details correctly");
 }