コード例 #1
0
ファイル: Booking.cs プロジェクト: tekavec/CargoBookingKata
 public Booking(Cargo.Cargo cargo, Vessel.Vessel vessel, ConfirmationNumber confirmationNumber)
 {
     _cargo = cargo;
     _vessel = vessel;
     _confirmationNumber = confirmationNumber;
 }
コード例 #2
0
 protected bool Equals(ConfirmationNumber other)
 {
     return _number == other._number;
 }