public ActionResult SaveApprovedAndReject(RefundInformationViewModel Model)
        {
            int UserId = Session["UserId"] != null?Convert.ToInt32(Session["UserId"]) : 0;

            Model.EnteredBy = UserId;
            return(Json(feeManegementService.SaveApprovedAndReject(Model), JsonRequestBehavior.AllowGet));
        }
        public ActionResult OpenRefundPopup(int Id, int?AdmissionId)
        {
            var data = new RefundInformationViewModel();

            return(PartialView("_RefundAR", feeManegementService.OpenRefundPopup(Id, AdmissionId)));
        }