2 implementations of IReporter
dotnet-sql-cache (2)
src\Tools\Shared\CommandLine\ConsoleReporter.cs (1)
13public class ConsoleReporter : IReporter
src\Tools\Shared\CommandLine\NullReporter.cs (1)
10public class NullReporter : IReporter
6 references to IReporter
dotnet-sql-cache (6)
Program.cs (5)
71var reporter = CreateReporter(verbose.HasValue()); 113var reporter = CreateReporter(verbose.HasValue()); 150private IReporter CreateReporter(bool verbose) 156private int ScriptTableAndIndexes(IReporter reporter) 203private int CreateTableAndIndexes(IReporter reporter)
src\Tools\Shared\CommandLine\NullReporter.cs (1)
15public static IReporter Singleton { get; } = new NullReporter();