Exemplo n.º 1
0
 public SeedingService(PedidosVinhoContext context)
 {
     _context = context;
 }
Exemplo n.º 2
0
 public ClientesController(PedidosVinhoContext context)
 {
     _context = context;
 }
Exemplo n.º 3
0
 public LinhasController(PedidosVinhoContext context)
 {
     _context = context;
 }
Exemplo n.º 4
0
 public PedidoItemsController(PedidosVinhoContext context)
 {
     _context = context;
 }
Exemplo n.º 5
0
 public ProdutosController(PedidosVinhoContext context, LinhaService linhaService, ProdutoService produtoService)
 {
     _context        = context;
     _linhaservice   = linhaService;
     _produtoservice = produtoService;
 }
Exemplo n.º 6
0
 public LinhaService(PedidosVinhoContext context)
 {
     _context = context;
 }
Exemplo n.º 7
0
 public ProdutoService(PedidosVinhoContext context)
 {
     _context = context;
 }