public ActionResult Index()
 {
     // var sig = UtilityClass.GetUserSession(UtilityClass.UserSession.UserSessions);
     if (sig != null)
     {
         List <MdlMadrassa> obj  = new List <MdlMadrassa>();
         MngMadrassa        mobj = new MngMadrassa();
         obj = mobj.GetAllMadrassa();
         return(View(obj));
     }
     else
     {
         return(RedirectToAction("Index", "Login"));
     }
 }