public SystemVariablesIntegrationTestFixture()
 {
     _repo      = new SystemVariablesRepository();
     _manager   = new SystemVariablesManager(_repo);
     _mockView  = new Mock <ISystemVariablesView>();
     _presenter = new SystemVariablesPresenter(_mockView.Object, _manager);
 }
Пример #2
0
 public SystemVariablesManager(ISystemVariablesRepository systemVariablesRepo)
 {
     _systemVariablesRepo = systemVariablesRepo;
 }