If it's just going to be a set of constants that are contained in the database instead of code, you could have a static class load the status
constants for everyone else to use. That way there's no duplication between db and code, and no magic numbers.
edit: since it's a static class, you could have it lazy load the constants. Don't hit the database until the first time someone asks for a status value.
Tesserex
2010-03-17 13:11:32