Browse Source
Rename `IProductRepository ` to `IRepository<Product, Guid>`.
pull/21687/head
maliming
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
2 additions and
2 deletions
-
docs/en/tutorials/modular-crm/part-07.md
|
|
|
@ -184,9 +184,9 @@ namespace ModularCrm.Products.Orders |
|
|
|
IDistributedEventHandler<OrderPlacedEto>, |
|
|
|
ITransientDependency |
|
|
|
{ |
|
|
|
private readonly IProductRepository _productRepository; |
|
|
|
private readonly IRepository<Product, Guid> _productRepository; |
|
|
|
|
|
|
|
public OrderEventHandler(IProductRepository productRepository) |
|
|
|
public OrderEventHandler(IRepository<Product, Guid> productRepository) |
|
|
|
{ |
|
|
|
_productRepository = productRepository; |
|
|
|
} |
|
|
|
|