コード例 #1
0
        public WaWiVerwaltungFassade(IProduktMgmt produktManager, ILagerLogMgmt lagerLogManager, INachbestellungMgmt nachbestellungManager)
        {
            this.waWiVerwaltungLogik   = new WaWiVerwaltungLogik(produktManager, lagerLogManager);
            this.nachbestellungManager = nachbestellungManager;
            this.lagerLogManager       = lagerLogManager;
            this.produktManager        = produktManager;

            this.erzeugeTestDaten();
        }
コード例 #2
0
 public WaWiVerwaltungLogik(IProduktMgmt produktManager, ILagerLogMgmt lagerLogManager)
 {
     this.produktManager  = produktManager;
     this.lagerLogManager = lagerLogManager;
 }