This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Threading.Tasks; | |
| using ModernHttpClient; | |
| using System.Net.Http; | |
| using System.Collections.Generic; | |
| using System.Threading; | |
| using System.Text; | |
| namespace MyNamespace | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using Mono.Data.Sqlite; | |
| namespace OurApplication.AppCore.Data.Sqlite | |
| { | |
| public class DbConnectionProvider : IDbConnectionProvider | |
| { | |
| private readonly string _connectionString; | |
| public DbConnectionProvider(string sqliteDatabasePath, string databaseName) |