public ActionResult GetReminderLog(int subCustId)
        {
            var log = BL_Subscription.GetReminderLogs(subCustId);

            return(Json(log, JsonRequestBehavior.AllowGet));
        }
        public ActionResult LoadSubscriptionTable(JQueryDataTableParamModel Param)
        {
            MYJSONTblCustom MYJSON = BL_Subscription.LoadSubscriptionTable(Param, Request);

            return(Json(MYJSON, JsonRequestBehavior.AllowGet));
        }