refactor(web): make dbcontext internal

This commit is contained in:
Oliver Booth 2023-08-16 14:09:43 +01:00
parent 9e2fa951f1
commit f18ae5eba4
Signed by: oliverbooth
GPG Key ID: B89D139977693FED
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore;
using OliverBooth.Data.Web.Configuration;
namespace OliverBooth.Data.Web;
@ -6,7 +6,7 @@ namespace OliverBooth.Data.Web;
/// <summary>
/// Represents a session with the web database.
/// </summary>
public sealed class WebContext : DbContext
internal sealed class WebContext : DbContext
{
private readonly IConfiguration _configuration;