using Microsoft.SqlServer.TransactSql.ScriptDom; using SQLLinter.Core.Interfaces; namespace SQLLinter.Infrastructure.Interfaces { public interface IFragmentBuilder { TSqlFragment? GetFragment(string sqlPath, TextReader txtRdr, out IList errors, IEnumerable overrides = null); } }