public Empresa(string nome, string cnpj) { Nome = nome; Cnpj = new Cnpj(cnpj); }
public void AtualizarCnpj(string cnpj) { Cnpj = new Cnpj(cnpj); }