public static Citizen GetCitizen(this IIdentity identity)
        {
            long id = Microsoft.AspNet.Identity.IdentityExtensions.GetUserId <long>(identity);
            CitizenBusinessLayer citizenBL = new CitizenBusinessLayer();

            return(citizenBL.GetCitizen(id));
        }