コード例 #1
0
 public RelatoriosController(EstoqueDbContext context, IVendaRepository vendaRepository, IProdutoRepository produtoRepository, IUnitOfWork unitOfWork, IMapper mapper)
 {
     this.context           = context;
     this.mapper            = mapper;
     this.unitOfWork        = unitOfWork;
     this.vendaRepository   = vendaRepository;
     this.produtoRepository = produtoRepository;
 }
コード例 #2
0
 public TipoProdutoController(EstoqueDbContext context)
 {
     _context = context;
 }
コード例 #3
0
 public AccountController()
 {
     db = new EstoqueDbContext();
 }
コード例 #4
0
 public UsuarioService(EstoqueDbContext context)
 {
     _context = context;
 }
コード例 #5
0
 public AutenticacaoController(EstoqueDbContext context)
 {
     _context = context;
 }