public JsonResult GetLeaveBalance(int EmployeeId) { decimal iBal = 0; EmployeeBAL employeeBAL = new EmployeeBAL(); iBal = employeeBAL.getLeaveBalance(EmployeeId); return(this.Json(iBal, JsonRequestBehavior.AllowGet)); }