Skip to content

Instantly share code, notes, and snippets.

@edhiley
Created July 6, 2011 11:23
Show Gist options
  • Save edhiley/1067026 to your computer and use it in GitHub Desktop.
Save edhiley/1067026 to your computer and use it in GitHub Desktop.
something to look at ....
class AFeeder
{
enum TypesOfInformation
{
PatientInformation,
SomethingElse
}
public Feeder()
{
var mappings = new[] {
new {
StartUrl = "http://start.url/[RULE]",
TypeOfInformation = TypesOfInformation.PatientInformation,
},
new {
StartUrl = "http://start.url/[RULE]2",
TypeOfInformation = TypesOfInformation.SomethingElse,
}
};
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment