Ejemplo n.º 1
0
 public TemporaryCountry(TemporaryType type, Country country, DateTime startDate, DateTime endDate)
     : base(Country.Section, country.Uid, country.ShortName, country.Region, country.TailNumberFormat)
 {
     this.Type          = type;
     this.StartDate     = startDate;
     this.EndDate       = endDate;
     this.Countries     = new List <OneToManyCountry>();
     this.CountryAfter  = this;
     this.CountryBefore = this;
 }
Ejemplo n.º 2
0
 public TemporaryCountry(TemporaryType type, Country country, DateTime startDate, DateTime endDate)
     : base(Country.Section, country.Uid, country.ShortName, country.Region, country.TailNumberFormat)
 {
     this.Type = type;
     this.StartDate = startDate;
     this.EndDate = endDate;
     this.Countries = new List<OneToManyCountry>();
     this.CountryAfter = this;
     this.CountryBefore = this;
 }
Ejemplo n.º 3
0
 public Temporary(TemporaryType myTemporaryType)
 {
     TemporaryType = myTemporaryType;
 }
 //: base(Section, country.Uid, country.ShortName, country.Region, country.TailNumberFormat)
 public TemporaryCountry(TemporaryType type, Country country, DateTime startDate, DateTime endDate)
 {
     Type = type;
     StartDate = startDate;
     EndDate = endDate;
     Countries = new List<OneToManyCountry>();
     CountryAfter = this;
     CountryBefore = this;
 }