Exemple #1
0
 //constructor
 public Firm(string name)
 {
     this.Name    = name;
     this.yards   = new List <TimberYard>();
     this.journal = AvailabilityChangeJournal.Journal;
     this.order   = new Order();
 }
Exemple #2
0
 //constructor
 public Firm(string name)
 {
     this.Name = name;
     this.yards = new List<TimberYard>();
     this.journal = AvailabilityChangeJournal.Journal;
     this.order = new Order();
 }