Beispiel #1
0
        public JsonResult GetEmployeeList(string src)
        {
            List <EmployeeMaster> _lst = new List <EmployeeMaster>();
            BALCommon             CSvc = new BALCommon(ConStr); BALFee CSFee = new BALFee(ConStr);

            try
            {
                _lst = CSFee.SearchEmployeeList(src, _OrgnisationID);
                return(Json(_lst, JsonRequestBehavior.AllowGet));
            }
            catch (Exception ex)
            {
                return(Json(_lst, JsonRequestBehavior.AllowGet));
            }
        }
Beispiel #2
0
        public JsonResult GetStudentList(string src)
        {
            List <StudentMaster> _lst = new List <StudentMaster>();
            BALFee CSFee = new BALFee(ConStr);

            try
            {
                _lst = CSFee.SearchStudentList(src, _OrgnisationID, _Financialyearid);



                return(Json(_lst, JsonRequestBehavior.AllowGet));
            }
            catch (Exception ex)
            {
                return(Json(_lst, JsonRequestBehavior.AllowGet));
            }
        }
Beispiel #3
0
        public List <FeeHead> GetFeeHeads(FeeHead FH)
        {
            BALFee bal = new BALFee(ConStr);

            return(bal.GetFeeHeads(FH));
        }
Beispiel #4
0
        public string SaveFeeTerm(FeeHead FH)
        {
            BALFee bal = new BALFee(ConStr);

            return(bal.SaveFeeTerm(FH));
        }