Skip to content

Commit 3821625

Browse files
committed
Changes for DI
1 parent bd5457e commit 3821625

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/Factory/QueryGeneratorFactory.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ namespace DbSyncKit.DB.Factory
1111
/// <summary>
1212
/// Factory class for creating instances of <see cref="IQueryGenerator"/> based on the specified <see cref="DatabaseProvider"/>.
1313
/// </summary>
14-
public static class QueryGeneratorFactory
14+
public class QueryGeneratorFactory
1515
{
1616
/// <summary>
1717
/// Gets an instance of <see cref="IQueryGenerator"/> based on the specified <paramref name="provider"/>.
@@ -20,7 +20,7 @@ public static class QueryGeneratorFactory
2020
/// <returns>An instance of <see cref="IQueryGenerator"/> for the specified database provider.</returns>
2121
/// <exception cref="ArgumentException">Thrown if the <paramref name="provider"/> is not supported.</exception>
2222
/// <exception cref="TypeLoadException">Thrown if the type for the specified database provider is not found.</exception>
23-
public static IQueryGenerator GetQueryGenerator(DatabaseProvider provider)
23+
public IQueryGenerator GetQueryGenerator(DatabaseProvider provider)
2424
{
2525
string namespacePrefix; // Adjust this to your actual namespace
2626
string className = "QueryGenerator";

0 commit comments

Comments
 (0)