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