コード例 #1
0
 private static IServiceCollection Populate(this IServiceCollection services, ISelector selector)
 {
     selector.Populate(services);
     return(services);
 }
コード例 #2
0
 private static IServiceCollection Populate(this IServiceCollection services, ISelector selector)
 {
     selector.Populate(services);
     return services;
 }
コード例 #3
0
 private static IServiceCollection Populate(this IServiceCollection services, ISelector selector, RegistrationStrategy registrationStrategy)
 {
     selector.Populate(services, registrationStrategy);
     return(services);
 }
コード例 #4
0
ファイル: GooseTypePairs.cs プロジェクト: gfl94/Goose
 private static List <GooseTypePair> Populate(List <GooseTypePair> pairs, ISelector selector)
 {
     selector.Populate(pairs);
     return(pairs);
 }