Exemplo n.º 1
0
        public ServiceVenda(Contexto db)
        {
            dao = new DaoVenda(db);

            serviceProduto = new ServiceProduto(db);
            serviceCaixa   = new ServiceCaixa(db);
            serviceEstoque = new ServiceEstoque(db);
        }
Exemplo n.º 2
0
        public ServiceEstoque(Contexto db)
        {
            dao = new DaoEstoque(db);

            serviceProduto = new ServiceProduto(db);
        }