// public Comprador(string c, string n, string t, string ct, double vl){ // cpf = c; // nome = n; // telefone = t; // cidade = ct; // valorInvestido = vl; // } public void insert() { BaseSombra db = new BaseSombra(); string query = $"{this.cpf};{this.nome};{this.telefone};{this.cidade};{this.valorInvestido}"; db.insert("./BD/comprador.txt", query); }
public void insert() { BaseSombra db = new BaseSombra(); string query = $"{this.cpf};{this.nome};{this.telefone};{this.tipoServico};{this.cidade};{this.preco}"; db.insert("./BD/empreendedor.txt", query); }
public void insert() { BaseSombra db = new BaseSombra(); string query = $"{this.cpfEmpreendedor};{this.cpfComprador};{this.servico};{this.valor}"; db.insert("./BD/empreendedor_comprador.txt", query); }