예제 #1
0
		// konstruktor wywoływany w klasie BosAccounts, gdy pojawia się nowy numer rachunku 
		internal BosAccount(IBossaApi api, string number)
		{
			this.api = api;
			Number = number;
			Papers = new BosPapers(this);
			Orders = new BosOrders(this);
		}
예제 #2
0
 // konstruktor wywoływany w klasie BosAccounts, gdy pojawia się nowy numer rachunku
 internal BosAccount(IBossaApi api, string number)
 {
     this.api = api;
     Number   = number;
     Papers   = new BosPapers(this);
     Orders   = new BosOrders(this);
 }
예제 #3
0
 internal BosInstruments(IBossaApi api)
 {
     this.api = api;
 }
예제 #4
0
 internal BosAccounts(IBossaApi api)
 {
     this.api = api;
 }