Namespace fix (#335)

This commit is contained in:
Pavel Veselý
2020-04-03 23:18:33 +02:00
committed by GitHub
parent 6fa2a38f36
commit 71bd3a8d6a
223 changed files with 338 additions and 153 deletions

View File

@ -4,9 +4,11 @@ using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Identity;
using Microsoft.AspNetCore.Identity.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore;
using Oqtane.Interfaces;
using Oqtane.Models;
using Oqtane.Repository.Interfaces;
namespace Oqtane.Repository
namespace Oqtane.Repository.Context
{
public class DBContextBase : IdentityUserContext<IdentityUser>
{

View File

@ -1,8 +1,7 @@
using System.Diagnostics.CodeAnalysis;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore;
using Oqtane.Models;
namespace Oqtane.Repository
namespace Oqtane.Repository.Context
{
public class InstallationContext : DbContext

View File

@ -2,9 +2,10 @@
using System.Linq;
using Microsoft.AspNetCore.Http;
using Microsoft.EntityFrameworkCore;
using Oqtane.Interfaces;
using Oqtane.Models;
namespace Oqtane.Repository
namespace Oqtane.Repository.Context
{
public class MasterDBContext : DbContext
{

View File

@ -1,8 +1,9 @@
using Microsoft.AspNetCore.Http;
using Microsoft.EntityFrameworkCore;
using Oqtane.Models;
using Oqtane.Repository.Interfaces;
namespace Oqtane.Repository
namespace Oqtane.Repository.Context
{
public class TenantDBContext : DBContextBase
{