コード例 #1
0
 public ContainerFlightPathFormViewModel(FlightPathFormViewModel flightPathViewModel, IEnumerable <LightPlanetViewModel> departurePlanets = null, IEnumerable <LightPlanetViewModel> destinationPlanets = null)
 {
     FlightPathFormViewModel = flightPathViewModel;
     DeparturePlanets        = departurePlanets ?? new List <LightPlanetViewModel>();
     DestinationPlanets      = destinationPlanets ?? new List <LightPlanetViewModel>();
 }
コード例 #2
0
 public ContainerFlightPathFormViewModel()
 {
     FlightPathFormViewModel = new FlightPathFormViewModel();
     DeparturePlanets        = new List <LightPlanetViewModel>();
     DestinationPlanets      = new List <LightPlanetViewModel>();
 }