public JsonResult MarkasVerified(int Id)
 {
     try
     {
         return(Json(MS.MarkAsVerified(Id), JsonRequestBehavior.AllowGet));
     }
     catch (Exception ex)
     {
         CommonServices.ErrorLogging(ex);
         throw ex;
     }
 }