Example #1
0
 public Hope(int id, string beschrijving, int latitude, int longitude, Boat boot,
     string verslag, bool approved, DateTime start, DateTime end, List<Employee> crew )
     : base(id, beschrijving, latitude, longitude, boot, verslag, crew)
 {
     Approved = approved;
     StartDate = start;
     EndDate = end;
 }
Example #2
0
 protected Mission(int id, string beschrijving, int latitude, int longitude, Boat boot,
     string verslag, List<Employee> crew = null )
 {
     Id = id;
     Beschrijving = beschrijving;
     Latitude = latitude;
     Longitude = longitude;
     Boot = boot;
     Verslag = verslag;
     Crew = crew;
 }
Example #3
0
 public Sin(int id, string beschrijving, int latitude, int longitude, Boat boot,
     string verslag, int aantalPolitie, DateTime datum, List<Employee> crew )
     : base(id, beschrijving, latitude, longitude, boot, verslag, crew)
 {
     AantalPolitie = aantalPolitie;
     Datum = datum;
 }