Пример #1
0
 public static Facade getInstance()
 {
     if (instance == null)
     {
         instance = new Facade(new BudgetContextDev());
     }
     return instance;
 }
Пример #2
0
 public static Facade getInstance(BudgetTestContext Context)
 {
     if (instance == null)
     {
         instance = new Facade(Context);
     }
     return instance;
 }