File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -170,9 +170,9 @@ public class OrderEventHandler :
170170 IDistributedEventHandler <OrderPlacedEto >,
171171 ITransientDependency
172172{
173- private readonly IRepository < Product , Guid > _productRepository ;
173+ private readonly IProductRepository _productRepository ;
174174
175- public OrderEventHandler (IRepository < Product , Guid > productRepository )
175+ public OrderEventHandler (IProductRepository productRepository )
176176 {
177177 _productRepository = productRepository ;
178178 }
Original file line number Diff line number Diff line change @@ -184,9 +184,9 @@ namespace ModularCrm.Products.Orders
184184 IDistributedEventHandler <OrderPlacedEto >,
185185 ITransientDependency
186186 {
187- private readonly IRepository < Product , Guid > _productRepository ;
187+ private readonly IProductRepository _productRepository ;
188188
189- public OrderEventHandler (IRepository < Product , Guid > productRepository )
189+ public OrderEventHandler (IProductRepository productRepository )
190190 {
191191 _productRepository = productRepository ;
192192 }
You can’t perform that action at this time.
0 commit comments