Skip to content

Instantly share code, notes, and snippets.

@twolfprogrammer
Created September 10, 2016 17:11
Show Gist options
  • Save twolfprogrammer/a8238b498e1931044353333cefc3a800 to your computer and use it in GitHub Desktop.
Save twolfprogrammer/a8238b498e1931044353333cefc3a800 to your computer and use it in GitHub Desktop.
using System;
using SQLite;
namespace SQLiteExample {
public interface ISQLiteService {
SQLiteConnection GetConnection(string databaseName);
long GetSize(string databaseName);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment