File tree Expand file tree Collapse file tree
src/Services/Ordering/Ordering.Domain/Events Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -11,13 +11,13 @@ namespace Ordering.Domain.Events
1111 /// </summary>
1212 public class OrderStartedDomainEvent : INotification
1313 {
14- public string UserId { get ; private set ; }
15- public int CardTypeId { get ; private set ; }
16- public string CardNumber { get ; private set ; }
17- public string CardSecurityNumber { get ; private set ; }
18- public string CardHolderName { get ; private set ; }
19- public DateTime CardExpiration { get ; private set ; }
20- public Order Order { get ; private set ; }
14+ public string UserId { get ; }
15+ public int CardTypeId { get ; }
16+ public string CardNumber { get ; }
17+ public string CardSecurityNumber { get ; }
18+ public string CardHolderName { get ; }
19+ public DateTime CardExpiration { get ; }
20+ public Order Order { get ; }
2121
2222 public OrderStartedDomainEvent ( Order order , string userId ,
2323 int cardTypeId , string cardNumber ,
You can’t perform that action at this time.
0 commit comments