public PedidoesController(LanchoneteCoreContext context, ProdutoService produtoService, AtendenteService atendenteService, PedidoService pedidoService, ClienteService clienteService) { _context = context; _produtoService = produtoService; _atendenteService = atendenteService; _clienteService = clienteService; _pedidoService = pedidoService; }
public PedidoService(LanchoneteCoreContext context) { _context = context; }
public PedidoRepository(LanchoneteCoreContext appDbContext, CarrinhoCompra carrinhoCompra) { _appDbContext = appDbContext; _carrinhoCompra = carrinhoCompra; }
public ProdutoesController(LanchoneteCoreContext context) { _context = context; }
public ProdutoService(LanchoneteCoreContext context) { _context = context; }
public PedidoDetalhesController(LanchoneteCoreContext context) { _context = context; }
public ProdutoRepository(LanchoneteCoreContext contexto) { _context = contexto; }
public AtendentesController(LanchoneteCoreContext context) { _context = context; }
public ClienteService(LanchoneteCoreContext context) { _context = context; }
public AtendenteService(LanchoneteCoreContext context) { _context = context; }