public ActionResult SendRemainder(TenantPetListModel model)
 {
     try
     {
         return(Json(new { msg = (new TenantPetListModel().SendRemainder(model)) }, JsonRequestBehavior.AllowGet));
     }
     catch (Exception Ex)
     {
         return(Json(new { Ex.Message }, JsonRequestBehavior.AllowGet));
     }
 }
 public ActionResult UpdateExpiryDate(TenantPetListModel model)
 {
     try
     {
         return(Json(new { msg = (new TenantPetListModel().UpdateExpiryDate(model)) }, JsonRequestBehavior.AllowGet));
     }
     catch (Exception Ex)
     {
         return(Json(new { Ex.Message }, JsonRequestBehavior.AllowGet));
     }
 }