예제 #1
0
 public MatchedTrip(Location fromAddress, Location toAddress, TripInformation tripInfo, DateTime departureTime)
 {
     this.fromAddress     = fromAddress;
     this.toAddress       = toAddress;
     this.TripInformation = tripInfo;
     this.departureTime   = departureTime;
 }
예제 #2
0
파일: Trip.cs 프로젝트: Alibayev/SeekARide2
 public Trip(Location From, Location To, DateTime TravelDateTime, TripType type, TripInformation tripInfo)
 {
     this.From            = From;
     this.To              = To;
     this.TravelDateTime  = TravelDateTime;
     this.Type            = type;
     this.TripInformation = tripInfo;
 }