public SystemVariablesIntegrationTestFixture() { _repo = new SystemVariablesRepository(); _manager = new SystemVariablesManager(_repo); _mockView = new Mock <ISystemVariablesView>(); _presenter = new SystemVariablesPresenter(_mockView.Object, _manager); }
public SystemVariablesManager(ISystemVariablesRepository systemVariablesRepo) { _systemVariablesRepo = systemVariablesRepo; }