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