-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#108 Accessibility - bookings not realized
- Loading branch information
1 parent
5c8a9d4
commit 0a9e798
Showing
4 changed files
with
69 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
30 changes: 30 additions & 0 deletions
30
community-service/src/Community.Domain/Members/Events/BookingNotRealized.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
using System; | ||
using Community.Domain.Members.ValueObjects; | ||
using Core.Domain; | ||
|
||
namespace Community.Domain.Members.Events | ||
{ | ||
public class BookingNotRealized : IEvent | ||
{ | ||
public BookingNotRealized(Guid memberId, BookingOffer offer, BookingFacility facility, BookingEmployee employee, DateTime date, short duration, Guid bookedRecordId, string caution) | ||
{ | ||
MemberId = memberId; | ||
Offer = offer; | ||
Facility = facility; | ||
Employee = employee; | ||
Date = date; | ||
Duration = duration; | ||
BookedRecordId = bookedRecordId; | ||
Caution = caution; | ||
} | ||
|
||
public Guid MemberId { get; } | ||
public BookingOffer Offer { get; } | ||
public BookingFacility Facility { get; } | ||
public BookingEmployee Employee { get; } | ||
public DateTime Date { get; } | ||
public short Duration { get; } | ||
public Guid BookedRecordId { get; } | ||
public string Caution { get; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters