I have spent sometime searching for an answer, but nothing helpful yet.
I am learning object oriented development and am working on a project to help understand the concepts.
I have an excel file that contains EmployeeID, EmployeeFirstName, EmployeeMiddleName, EmployeeLastName.
I need to call a stored procedure in the database, pass the EmployeeID parameter, and with the returned values, write to a csv file.
The output csv file will have the following columns: EmployeeID, EmployeeAddress, ClientID, ProjectID
How do I write the code in OOP format? (as in sample syntax for the employee class object)
Update:
How can I go about creating an Employee Object and create corresponding properties (such as EmployeeID, EmployeeFirstname, EmployeeMiddleName etc)