public ActionResult IsNationalIDExists(string NationalIDNumber)
 {
     if (CitizenBusinessLayer.IsNationalIDExists(NationalIDNumber))
     {
         return(Json(false, JsonRequestBehavior.AllowGet));
     }
     else
     {
         return(Json(true, JsonRequestBehavior.AllowGet));
     }
 }