public ActionResult Reject(int id, FormCollection form)
        {
            var model = new WarrantyClaimRejectModel();
            model.Id = id;
            model.RejectionReason.Id = StringUtility.ToInt(form["rejectionReasonId"]);
            model.Comment = form["comment"];

            var claimSvc = new WarrantyClaimLogic(Ticket);
            claimSvc.Reject(model);

            return RedirectToAction("Display", new { id = id });
        }