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
protected override IEnumerable<IValueSetCode> GetEntries(bool negation) | |
{ | |
// we currently are not importing allergies, but they should be here soon ... | |
if (DateTime.Now > new DateTime(2015, 3, 1)) | |
{ | |
throw new NotSupportedException("We still have no allergies imported!"); | |
} | |
return Enumerable.Empty<IValueSetCode>(); | |
} |