Last active
January 20, 2016 18:45
-
-
Save JoseGonzalez321/684557d54e97d49feb97 to your computer and use it in GitHub Desktop.
Gist for blog post: http://www.mindbodysouldeveloper.com/2016/01/27/c-sharp-how-to-replace-dictionary-with-factory-method/
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public Enum Level | |
{ | |
Top, | |
One, | |
Two | |
} | |
public class StoredProcParam | |
{ | |
public const string ValueDate = "ValueDate"; | |
public const string Branch = "Branch"; | |
public const string LevelName = "LevelName"; | |
public const string SubLevelName = "SubLevelName"; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment