I think I just executed the fastest enhancement ever! Here's my VPN status window as evidence:
During this 15:30 connectivity, I added support for specifying a Country on job postings on the DotNetNuke project I worked on this past weekend. Here were the steps involved:
- SVN Update
- Edit the DB schema to provide a CountryCode column, defaulting to US
- Create an Enum for CountryCode, with descriptions for the 3 countries that needed to be in the list
- Update the Fetch stored procedure to return that column
- Update the Save stored procedure to accept the column and persist it
- Update the List stored procedure to return the column
- Edit the business object to give it the property for CountryCode
- Edit the ManageJobs.ascx to provide an EnumList control for the CountryCode and display/save the value
- Test
- SVN Commit
EnumList and DotNetNuke made this happen.