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