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