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