public ActionResult Delete(int id, FormCollection collection)
 {
     try
     {
         _client.RemoveTicket(id);
         return(RedirectToAction("Index"));
     }
     catch
     {
         return(View());
     }
 }