private static IServiceCollection Populate(this IServiceCollection services, ISelector selector)
 {
     selector.Populate(services);
     return(services);
 }
 private static IServiceCollection Populate(this IServiceCollection services, ISelector selector)
 {
     selector.Populate(services);
     return services;
 }
 private static IServiceCollection Populate(this IServiceCollection services, ISelector selector, RegistrationStrategy registrationStrategy)
 {
     selector.Populate(services, registrationStrategy);
     return(services);
 }
Ejemplo n.º 4
0
 private static List <GooseTypePair> Populate(List <GooseTypePair> pairs, ISelector selector)
 {
     selector.Populate(pairs);
     return(pairs);
 }