Ejemplo n.º 1
0
        public void Carregar()
        {
            ItemEngenhariaService itemEngenhariaService = new ItemEngenhariaService();

            var catalogos = itemEngenhariaService.ObterCatalogos();

            RamalEstoqueService ramalEstoqueService = new RamalEstoqueService();
        }
Ejemplo n.º 2
0
        public void RecuperaArvoreEstoque()
        {
            ArvoresServiceAramazen arvoresServiceAramazen = new ArvoresServiceAramazen();
            var baseMDBRepositorio = new BaseMDBRepositorio <RamalEstoque>("Catalogo", "RamalEstoque");
            RamalEstoqueService  ramalEstoqueService  = new RamalEstoqueService(baseMDBRepositorio);
            ArvoreServiceEstoque arvoreServiceEstoque = new ArvoreServiceEstoque(arvoresServiceAramazen, ramalEstoqueService);

            var lista = arvoreServiceEstoque.ListaRamaisArvore();
        }
Ejemplo n.º 3
0
        public void DoEstoqueAlimentaArvoreEstoque()
        {
            ArvoresServiceAramazen arvoresServiceAramazen = new ArvoresServiceAramazen();
            var baseMDBRepositorio = new BaseMDBRepositorio <RamalEstoque>("Catalogo", "RamalEstoque");
            RamalEstoqueService  ramalEstoqueService  = new RamalEstoqueService(baseMDBRepositorio);
            ArvoreServiceEstoque arvoreServiceEstoque = new ArvoreServiceEstoque(arvoresServiceAramazen, ramalEstoqueService);

            arvoreServiceEstoque.CarregaRamaisEstoque();
        }
Ejemplo n.º 4
0
 public CriaEstrutPipeRequest(RamalEstoqueService ramalEstoqueService)
 {
     _ramalEstoqueService = ramalEstoqueService;
 }