Esempio n. 1
0
 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;
 }
Esempio n. 2
0
 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;
 }
Esempio n. 3
0
 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();
 }