Beispiel #1
0
 public static IDictionary <Type, Delegate> ModelIdExtractors(this FeatureContext context)
 {
     return(context.GetValueOrDefault(
                "ModelIdExtractors",
                () => new Dictionary <Type, Delegate>()));
 }
Beispiel #2
0
 public static IList <string> TypeNamePrefixes(this FeatureContext context)
 {
     return(context.GetValueOrDefault(
                "TypeNamePrefixes",
                () => new List <string>(new[] { "" })));
 }