public BookingComponent(BookingComponentTypes bookingComponentType, IBookingComponentParent parent, DateTime creationDate) : this() { this.BookingComponentType = bookingComponentType; this.CreationDate = creationDate; this.Parent = parent; }
public BookingComponent(BookingComponentTypes bookingComponentType, IBookingComponentParent parent) : this(bookingComponentType, parent, DateTime.Now) { }