public ActionResult Index(MiscellaneousTransactionListModel model, string message="")
 {
     ViewBag.ErrorMessage = message;
     SessionHelper.MiscellaneousTransaction = null;
     model.SOBId = SessionHelper.SOBId;
     return View(model);
 }
 public ActionResult MiscellaneousTransactionPartial(MiscellaneousTransactionListModel model)
 {
     return PartialView("_List", MiscellaneousTransactionHelper.GetMiscellaneousTransactions(SessionHelper.SOBId));
 }