Пример #1
0
 public Account(string name, string description, Currency currency)
 {
     this.transactions = new AccountTransactionList();
     this.positions    = new AccountPositionList();
     this.Name         = name;
     this.Description  = description;
     this.Currency     = currency;
 }
Пример #2
0
		public Account(string name, string description, Currency currency)
		{
			this.transactions = new AccountTransactionList();
			this.positions = new AccountPositionList();
			this.Name = name;
			this.Description = description;
			this.Currency = currency;
		}