forked from EllieBotDevs/elliebot
15 lines
No EOL
373 B
C#
15 lines
No EOL
373 B
C#
#nullable disable
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace EllieBot.Services;
|
|
|
|
public abstract class DbService
|
|
{
|
|
/// <summary>
|
|
/// Call this to apply all migrations
|
|
/// </summary>
|
|
public abstract Task SetupAsync();
|
|
|
|
public abstract DbContext CreateRawDbContext(string dbType, string connString);
|
|
public abstract EllieContext GetDbContext();
|
|
} |