Add appsettings.json to main application. This will overwrite the one previously inherited from DataLayer

This commit is contained in:
Robert McRackan 2019-12-09 15:24:25 -05:00
parent 54eea8ddae
commit 41620352e8
4 changed files with 10 additions and 1 deletions

View file

@ -1,16 +0,0 @@
using System;
using DataLayer;
using FileManager;
namespace ApplicationServices
{
public static class DbContexts
{
//// idea for future command/query separation
// public static LibationContext GetCommandContext() { }
// public static LibationContext GetQueryContext() { }
public static LibationContext GetContext()
=> LibationContext.Create(SqliteStorage.ConnectionString);
}
}