Beispiel #1
0
 public DokumentSwde(string fileName, bool ukladGeodezyjny = true)
 {
     Geodezyjny = ukladGeodezyjny;
     _nazwa     = fileName;
     _dokument  = new DokumentReader(fileName);
     _obiekty   = new Dictionary <RekordId, ObiektSwde>();
 }
Beispiel #2
0
 public BudowniczySwde(DokumentBase dokument)
 {
     _dokument           = dokument;
     _fabryka            = new FabrykaKomponentow(this);
     _aktualneKomponenty = new Stack <KomponentBase>();
 }