internal void FillDeleteScriptCollection(SQLScriptCollection collection) { if (collection == null) { throw new ArgumentNullException("collection"); } collection.Clear(); FillDeleteScript(collection); }
internal void FillFreshScriptCollection(SQLScriptCollection collection) { if (collection == null) { throw new ArgumentNullException("collection"); } collection.Clear(); FillSelectScript(null, 0, collection); }