public JsonResult DismissNotificationById(string MessageId)
        {
            SystemNotificationFacade NFacade = new SystemNotificationFacade(this.CurrentClient.ApplicationDBConnectionString);
            bool IsDismiss = true;
            bool IsUpdate  = false;

            NFacade.UpdateDismissNotificationByUsers(Helper.oUser.UserId, MessageId, IsDismiss, IsUpdate);
            return(Json(CommonMessagesLang.msgSuccess));
        }