예제 #1
0
 public SectorMapFactoryOptions(ISectorMapFactoryOptionsSubScheme optionsSubScheme,
                                IEnumerable <SectorTransition> transitions)
 {
     OptionsSubScheme = optionsSubScheme ?? throw new ArgumentNullException(nameof(optionsSubScheme));
     Transitions      = transitions ?? throw new ArgumentNullException(nameof(transitions));
 }
예제 #2
0
 public SectorMapFactoryOptions(ISectorMapFactoryOptionsSubScheme optionsSubScheme)
 {
     OptionsSubScheme = optionsSubScheme ?? throw new ArgumentNullException(nameof(optionsSubScheme));
     Transitions      = Array.Empty <SectorTransition>();
 }