Exemplo n.º 1
0
 public OrderList(IMapper mapper, ICodeGeneratorService codeGeneratorService, IOrdersDbContext orderDbContext)
 {
     _mapper               = mapper;
     _orderDbContext       = orderDbContext;
     _codeGeneratorService = codeGeneratorService;
 }
Exemplo n.º 2
0
 public ProductList(IOrdersDbContext dbcontext)
 {
     dbContext = dbcontext;
 }
 public OrderRepository(IOrdersDbContext ordersDbContext)
 {
     _ordersDbContext = ordersDbContext;
 }