Sic04/Yalv/YALV.Core/Providers/MsSqlServerEntriesProvider.cs

13 lines
315 B
C#
Raw Normal View History

2022-09-19 09:16:33 +08:00
using System.Data;
using System.Data.SqlClient;
namespace YALV.Core.Providers
{
public class MsSqlServerEntriesProvider : AbstractEntriesProviderBase
{
protected override IDbConnection CreateConnection(string dataSource)
{
return new SqlConnection(dataSource);
}
}
}