static int UpdateEmployeeDOB() { int noofemployeesupdated = 0; try { EmployeeBAL employeebal = new EmployeeBAL(); noofemployeesupdated = employeebal.UpdateEmployeeDOB(); } catch (Exception ex) { throw ex; } return(noofemployeesupdated); }