コード例 #1
0
        public ServiceVenda(Contexto db)
        {
            dao = new DaoVenda(db);

            serviceProduto = new ServiceProduto(db);
            serviceCaixa   = new ServiceCaixa(db);
            serviceEstoque = new ServiceEstoque(db);
        }
コード例 #2
0
        public ServiceEstoque(Contexto db)
        {
            dao = new DaoEstoque(db);

            serviceProduto = new ServiceProduto(db);
        }