mirror of
https://github.com/bitwarden/android.git
synced 2024-11-01 23:54:06 +03:00
23 lines
525 B
C#
23 lines
525 B
C#
using System;
|
|
using Bit.App.Abstractions;
|
|
using Bit.App.Models.Data;
|
|
using SQLite;
|
|
|
|
namespace Bit.App.Services
|
|
{
|
|
public class DatabaseService : IDatabaseService
|
|
{
|
|
protected readonly SQLiteConnection _connection;
|
|
|
|
public DatabaseService(ISqlService sqlService)
|
|
{
|
|
_connection = sqlService.GetConnection();
|
|
}
|
|
|
|
public void CreateTables()
|
|
{
|
|
_connection.CreateTable<FolderData>();
|
|
_connection.CreateTable<SiteData>();
|
|
}
|
|
}
|
|
}
|