public JObject GetAPChecksJson(FormCollection form)
        {
            JObject aRChecks = CheckManageHelper.GetAPChecksListJson(form);

            return(aRChecks);
        }
        public ActionResult PayAPCheck(int receiptId)
        {
            string isPaid = CheckManageHelper.PayCheck(receiptId);

            return(Json(isPaid));
        }
        public ActionResult CollectARCheck(int receiptId)
        {
            string isCollected = CheckManageHelper.CollectCheck(receiptId);

            return(Json(isCollected));
        }