コード例 #1
0
        public JsonResult GetLeaveBalance(int EmployeeId)
        {
            decimal     iBal        = 0;
            EmployeeBAL employeeBAL = new EmployeeBAL();

            iBal = employeeBAL.getLeaveBalance(EmployeeId);
            return(this.Json(iBal, JsonRequestBehavior.AllowGet));
        }