public CreateProductCommandHandler(IApplicationContext1 context)
 {
     _context = context;
 }
 public DeleteProductByIdCommandHandler(IApplicationContext1 context)
 {
     _context = context;
 }
Ejemplo n.º 3
0
 public GetProductByIdQueryHandler(IApplicationContext1 context)
 {
     _context = context;
 }
 public GetAllProductsQueryHandler(IApplicationContext1 context)
 {
     _context = context;
 }