public Carrinhos(Repositories.ICarrinhosLeitura carrinhosLeitura,
                         Repositories.ICarrinhosEscrita carrinhosEscrita,
                         Repositories.IProdutosLeitura produtosLeitura)
        {
            this._carrinhosLeitura = carrinhosLeitura;
            this._carrinhosEscrita = carrinhosEscrita;

            this._produtosLeitura = produtosLeitura;
        }
 public Compras(Repositories.ICarrinhosLeitura carrinhoLeitura,
                Repositories.ICarrinhosEscrita carrinhoEscrita,
                Repositories.IComprasEscrita comprasEscrita,
                IPessoas pessoas,
                IBlockchain blockchain)
 {
     this._carrinhoLeitura = carrinhoLeitura;
     this._carrinhoEscrita = carrinhoEscrita;
     this._comprasEscrita  = comprasEscrita;
     this._pessoas         = pessoas;
     this._blockchain      = blockchain;
 }