public JsonResult LoadNewAltertForBellICon()
        {
            notifyRepo   = new NotificationRepo();
            repoResponse = new RepositoryResponse();
            string _loggedInUserID = System.Web.HttpContext.Current.Session["UserID"].ToString();

            repoResponse = notifyRepo.GetNotificationsByEmployeeNumberTOP3(_loggedInUserID);

            var sa = new JsonSerializerSettings();

            return(Json(repoResponse.Data, JsonRequestBehavior.AllowGet));

            //return Json(new { success = repoResponse.success, message = repoResponse.message, Data = repoResponse.Data });
        }