public ActionResult Index() { CategoriaController categoriaController = new CategoriaController(); ProdutoController produtoController = new ProdutoController(); var model = new FiltrosViewModel { Categorias = categoriaController.GetCategoria(), Produtos = produtoController.GetProdutos(), }; return(View(model)); }
public ActionResult Create() { CategoriaController categoriaController = new CategoriaController(); CategoriaDAO categoriaDAO = new CategoriaDAO(); var listaCategoria = categoriaDAO.GetAll(); var model = new ProdutoViewModel() { Categorias = categoriaController.GetCategoria(), }; return(View(model)); }
public ActionResult IndexRelatorioBaixa() { BaixaController baixaController = new BaixaController(); ProdutoController produtoController = new ProdutoController(); CategoriaController categoriaController = new CategoriaController(); var model = new FiltrosViewModel() { Baixas = baixaController.GetBaixas(), Categorias = categoriaController.GetCategoria(), Produtos = produtoController.GetProdutos(), }; return(View(model)); }
public ActionResult IndexRelatorioLote() { LoteController loteController = new LoteController(); ProdutoController produtoController = new ProdutoController(); CategoriaController categoriaController = new CategoriaController(); var model = new FiltrosViewModel() { Lotes = loteController.GetLotes(), Categorias = categoriaController.GetCategoria(), Produtos = produtoController.GetProdutos(), }; return(View(model)); }