[ENHANCE] - Added Module to NameSpace [Owner].Module.[Module]

[ENHANCE] - Added Module to NameSpace [Owner].Module.[Module]
This commit is contained in:
vnetonline
2023-06-20 16:52:50 +10:00
parent fcb05a7834
commit 3abe47ae9e
32 changed files with 76 additions and 87 deletions

View File

@ -1,7 +1,7 @@
using System.Collections.Generic;
using [Owner].[Module].Models;
using [Owner].Module.[Module].Models;
namespace [Owner].[Module].Repository
namespace [Owner].Module.[Module].Repository
{
public interface I[Module]Repository
{

View File

@ -5,7 +5,7 @@ using Oqtane.Repository;
using Oqtane.Infrastructure;
using Oqtane.Repository.Databases.Interfaces;
namespace [Owner].[Module].Repository
namespace [Owner].Module.[Module].Repository
{
public class [Module]Context : DBContextBase, ITransientService, IMultiDatabase
{

View File

@ -2,9 +2,9 @@ using Microsoft.EntityFrameworkCore;
using System.Linq;
using System.Collections.Generic;
using Oqtane.Modules;
using [Owner].[Module].Models;
using [Owner].Module.[Module].Models;
namespace [Owner].[Module].Repository
namespace [Owner].Module.[Module].Repository
{
public class [Module]Repository : I[Module]Repository, ITransientService
{