Beispiel #1
0
 public void Init(Boot boot, Dictionary<string, string> HPath)
 {
     if (T == null)
     {
         T = new toc();
         T.tocInit(HPath);
     }
     this.boot = boot;
     this.HPath = HPath;
 }
Beispiel #2
0
 public void Init(Boot boot)
 {
     this.boot = boot;
     filepath = Path.Combine(boot.DebugDir, "Prices", file);
     initFilePath = Path.Combine(boot.ExcelDir, initFile);
     //if (!boot.fo.IsFileExist(initFilePath))
     //{
     //    //             if(boot.ssInit == null) boot.ssInit = new List<SuppliersInit>()
     //    WrInitXML(boot.ssInit);
     //}
     boot.ssInit = boot.Lib.RdXML<List<SupplierInit>>(initFilePath) ??
         throw new FileLoadException("Bad \"" + initFile + "\"");
     string path = Path.Combine(boot.DebugDir, "Prices", file);
     RdXML();
     boot.Suppliers.AllSuppliers = AllSuppliers;
 }
Beispiel #3
0
 public void Init(Boot boot) { this.boot = boot; }
Beispiel #4
0
 public Supplier(Boot boot) { this.boot = boot; }
Beispiel #5
0
 public ProductSet(Boot boot) { this.boot = boot; }
Beispiel #6
0
 public psInit(Boot boot)
 {
     this.boot = boot;
     ssi = boot.ssInit;
 }