Skip to content

Instantly share code, notes, and snippets.

@tomwis
Created August 17, 2017 12:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tomwis/52b8939d4e94617f1b39891a831b98c6 to your computer and use it in GitHub Desktop.
Save tomwis/52b8939d4e94617f1b39891a831b98c6 to your computer and use it in GitHub Desktop.
public DbService(IFileService fileService)
{
_fileService = fileService;
_connection = new SQLiteConnection(_fileService.DbPath);
_connection.CreateTable<MonthItem>();
_connection.CreateTable<BudgetItem>();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment