예제 #1
0
 // Public method to get instance of the showcase.
 public static Showcase Instance()
 {
     if (uniqueInstance == null)
     {
         uniqueInstance = new Showcase();
     }
     return(uniqueInstance);
 }
예제 #2
0
 public Shop()
 {
     mainShowCase        = Showcase.Instance();
     _cashRegisterSeller = new CashRegisterSeller();
 }