コード例 #1
0
 public PedidoesController(LanchoneteCoreContext context, ProdutoService produtoService, AtendenteService atendenteService, PedidoService pedidoService, ClienteService clienteService)
 {
     _context          = context;
     _produtoService   = produtoService;
     _atendenteService = atendenteService;
     _clienteService   = clienteService;
     _pedidoService    = pedidoService;
 }
コード例 #2
0
 public PedidoService(LanchoneteCoreContext context)
 {
     _context = context;
 }
コード例 #3
0
 public PedidoRepository(LanchoneteCoreContext appDbContext, CarrinhoCompra carrinhoCompra)
 {
     _appDbContext   = appDbContext;
     _carrinhoCompra = carrinhoCompra;
 }
コード例 #4
0
 public ProdutoesController(LanchoneteCoreContext context)
 {
     _context = context;
 }
コード例 #5
0
 public ProdutoService(LanchoneteCoreContext context)
 {
     _context = context;
 }
コード例 #6
0
 public PedidoDetalhesController(LanchoneteCoreContext context)
 {
     _context = context;
 }
コード例 #7
0
 public ProdutoRepository(LanchoneteCoreContext contexto)
 {
     _context = contexto;
 }
コード例 #8
0
 public AtendentesController(LanchoneteCoreContext context)
 {
     _context = context;
 }
コード例 #9
0
 public ClienteService(LanchoneteCoreContext context)
 {
     _context = context;
 }
コード例 #10
0
 public AtendenteService(LanchoneteCoreContext context)
 {
     _context = context;
 }