Example #1
0
        public void AssignStaffMember(Guid staffMemberId)
        {
            Printer.Print(ConsoleColor.Cyan);

            var @event = new StaffAssignedToAppointment(Id, staffMemberId);

            Apply(@event);
            DomainEvents.Publish(@event);
        }
Example #2
0
 public void Apply(StaffAssignedToAppointment @event)
 {
     StaffMemberId = @event.StaffId;
 }