Example #1
0
 public AppointmentBookedEvent(AppointmentOrder order, Location location, Schedule schedule, CarService carService)
 {
     Order      = order;
     Location   = location;
     Schedule   = schedule;
     CarService = carService;
 }
 public Appointment(AppointmentId id, AppointmentOrder appointmentOrder, Location location, Schedule schedule, CarService carService) : base(id)
 {
     CarService            = carService;
     this.id               = id;
     _id                   = Id;
     this.appointmentOrder = appointmentOrder;
     Location              = location;
     Schedule              = schedule;
 }