public AG_ROOT_Cont(IBAN iban, Client client, Suma sold) { this.iban = iban; this.sold = sold; this.istoric = new Tranzactii(); this.client = client; }
public AG_ROOT_Cont(IBAN iban, Client client) { this.iban = iban; this.sold = new Suma(0.0); //incepe de la 0 this.istoric = new Tranzactii(); this.client = client; }