public void Setup()
        {
            configurationService = new AppSettingsConfigurationService();
            connFactory          = new ConfiguredConnectionFactory(configurationService);
            var connString = connFactory.GetEddsConnection().ConnectionString;

            sqlConnection = new SqlConnection(connString);
            // TODO -- Connection string refactor
            kCura.Data.RowDataGateway.Config.SetConnectionString(connString);
            this.helper = new Mock <IHelper>();
            this.helperConnectionFactory = new HelperConnectionFactory(helper.Object);
        }