private Debet debet = null; // may be sth or not

        public BankAccount(string number, string name, Client client) : base(number)
        {
            this.name          = name;
            this.establishDate = new DateTime();
            this.debet         = null;
            this.client        = client;
        }
Example #2
0
 public void Initialize()
 {
     debet = new Debet(new Pieniadze(1000));
 }
Example #3
0
 public RachunekDebetowy(Klient klient, Debet debet, Int64 id = 0)
     : base(klient, id)
 {
     this.debet = debet;
 }