public HOPE(int id, Boat boat, DateTime leaveDate, string discription, GeoCoordinate location, BoatType boatType, List<Material> materials, List<FunctionEmployee> employees, string report, int hopeID, DateTime returnDate, bool approved, List<Measurement> measurements) : base(id, boat, leaveDate, discription, location, boatType, materials, employees, report) { this.ID = hopeID; this.ReturnDate = returnDate; this.Approved = approved; this.Measurements = measurements; }
public Mission(int id, Boat boat, DateTime leaveDate, string discription, GeoCoordinate location, BoatType boatType, List<Material> materials, List<FunctionEmployee> employees, string report) { this.ID = id; this.Boat = boat; this.LeaveDate = leaveDate; this.Discription = discription; this.Location = location; this.BoatType = boatType; this.Materials = materials; this.Employees = employees; this.Report = report; }
public SIN(int id, Boat boat, DateTime leaveDate, string discription, GeoCoordinate location, BoatType boatType, List<Material> materials, List<FunctionEmployee> employees, string report, int sinID, List<Incident> incidents) : base(id, boat, leaveDate, discription, location, boatType, materials, employees, report) { this.ID = sinID; this.Incidents = incidents; }
public void ChangeBoat(Boat boat) { throw new System.NotImplementedException(); }