Beispiel #1
0
 public override bool CanHandle(EntityUpdateDomainEvent notification)
 {
     return(notification?.Entity.Is <ProductInventory>() == true);
 }
Beispiel #2
0
 public override bool CanHandle(EntityUpdateDomainEvent notification)
 {
     return(notification?.Entity.Is <UserAccount>() == true);
 }
Beispiel #3
0
 public override bool CanHandle(EntityUpdateDomainEvent notification)
 {
     return(notification?.Entity.Is <Customer>() == true);
 }