Ejemplo n.º 1
0
 public static List <CommandOutput> MapTo <TOutputType>(this CommandStage stage, SettingsCollection settings)
     where TOutputType : class, IContainer, new()
 {
     return(stage.MapTo <TOutputType>(string.Empty, settings));
 }
Ejemplo n.º 2
0
 public static List <CommandOutput> MapTo <TOutputType>(this CommandStage stage)
     where TOutputType : class, IContainer, new()
 {
     return(stage.MapTo <TOutputType>(SettingsCollection.ForOutput()));
 }