示例#1
0
 public ItemEvent(Guid listId, Guid itemId, ShoppingEventType type) : base(type, listId)
 {
     ItemId = itemId;
 }
示例#2
0
 public ShoppingUserEvent(ShoppingEventType type, Guid userId) : base(type)
 {
     UserId = userId;
 }
示例#3
0
 public ShoppingListEvent(ShoppingEventType type, Guid listId) : base(type)
 {
     ListId = listId;
 }
示例#4
0
 public ShoppingEvent(ShoppingEventType type)
 {
     Type = type;
 }