public ActionResult DeleteRestore(RequestTicketReplyDeleteViewModel model)
 {
     try
     {
         if (model.TicketId != null && model.TicketReplyId != null)
         {
             _ticketsReply.RestoreTicketReply(model.TicketReplyId, model.TicketId, Convert.ToInt32(_sessionHandler.UserId));
             return(Json(true, JsonRequestBehavior.AllowGet));
         }
         else
         {
             return(Json(false, JsonRequestBehavior.AllowGet));
         }
     }
     catch (Exception)
     {
         throw;
     }
 }