Beispiel #1
0
 private MusicShopEngine()
 {
     this.musicShopFactory = new MusicShopFactory();
     this.articleFactory = new ArticleFactory();
     this.musicShops = new Dictionary<string, IMusicShop>();
     this.articles = new Dictionary<string, IArticle>();
     this.userInterface = new ConsoleInterface();
 }
 private MusicShopEngine()
 {
     this.musicShopFactory = new MusicShopFactory();
     this.articleFactory   = new ArticleFactory();
     this.musicShops       = new Dictionary <string, IMusicShop>();
     this.articles         = new Dictionary <string, IArticle>();
     this.userInterface    = new ConsoleInterface();
 }