Beispiel #1
0
 public repairSvc(RepairDB repairDb, MarketDB marketDb, InsuranceDB insuranceDb, NodeContainer nodeContainer, NotificationManager notificationManager, ItemFactory itemFactory, BoundServiceManager manager, WalletManager walletManager) : base(manager, null)
 {
     this.ItemFactory         = itemFactory;
     this.MarketDB            = marketDb;
     this.RepairDB            = repairDb;
     this.InsuranceDB         = insuranceDb;
     this.NotificationManager = notificationManager;
     this.Container           = nodeContainer;
     this.WalletManager       = walletManager;
 }
Beispiel #2
0
 protected repairSvc(RepairDB repairDb, MarketDB marketDb, InsuranceDB insuranceDb, NodeContainer nodeContainer, NotificationManager notificationManager, ItemInventory inventory, ItemFactory itemFactory, BoundServiceManager manager, WalletManager walletManager, Client client) : base(manager, client)
 {
     this.mInventory          = inventory;
     this.ItemFactory         = itemFactory;
     this.MarketDB            = marketDb;
     this.RepairDB            = repairDb;
     this.InsuranceDB         = insuranceDb;
     this.NotificationManager = notificationManager;
     this.Container           = nodeContainer;
     this.WalletManager       = walletManager;
 }