Пример #1
0
 protected corpRegistry(CorporationDB db, ItemFactory itemFactory, Corporation corp, int isMaster, BoundServiceManager manager, Client client) : base(manager, client)
 {
     this.DB           = db;
     this.ItemFactory  = itemFactory;
     this.mCorporation = corp;
     this.mIsMaster    = isMaster;
 }
Пример #2
0
 protected corpRegistry(CorporationDB db, ItemManager itemManager, Corporation corp, int isMaster, BoundServiceManager manager) : base(manager)
 {
     this.DB           = db;
     this.ItemManager  = itemManager;
     this.mCorporation = corp;
     this.mIsMaster    = isMaster;
 }
Пример #3
0
        public OfficesSparseRowsetService(Corporation corporation, CorporationDB db, SparseRowsetHeader rowsetHeader, BoundServiceManager manager) : base(rowsetHeader, manager)
        {
            this.DB          = db;
            this.Corporation = corporation;

            // get all the indexes based on the key
            this.RowsIndex = this.DB.GetOffices(corporation.ID);
        }
Пример #4
0
 public corpmgr(CorporationDB db)
 {
     this.DB = db;
 }
Пример #5
0
 public LPSvc(CorporationDB db)
 {
     this.DB = db;
 }
Пример #6
0
 public corpRegistry(CorporationDB db, ItemFactory itemFactory, BoundServiceManager manager) : base(manager, null)
 {
     this.DB          = db;
     this.ItemFactory = itemFactory;
 }
Пример #7
0
 public corporationSvc(CorporationDB db)
 {
     this.DB = db;
 }
Пример #8
0
 public corpRegistry(CorporationDB db, ItemManager itemManager, BoundServiceManager manager) : base(manager)
 {
     this.DB          = db;
     this.ItemManager = itemManager;
 }