Created
July 6, 2011 11:23
-
-
Save edhiley/1067026 to your computer and use it in GitHub Desktop.
something to look at ....
This file contains hidden or 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
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