using System.Data; namespace SweetLib.Storage { /// /// Provider for database connection. /// public interface IConnectionProvider where T : IDbConnection { /// /// Gets an instance of a database connection. /// /// T GetConnection(); } }