chore: 更新命名空间
This commit is contained in:
parent
ead25a3390
commit
27e25c9907
|
@ -1,10 +1,5 @@
|
|||
using BootstrapAdmin.DataAccess.Models;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace BootstrapAdmin.DataAccess.EFCore
|
||||
{
|
||||
|
|
|
@ -1,10 +1,9 @@
|
|||
using BootstrapAdmin.DataAccess.EFCore;
|
||||
using BootstrapAdmin.DataAccess.EFCore.Services;
|
||||
using BootstrapAdmin.DataAccess.Interface;
|
||||
using BootstrapAdmin.DataAccess.Core;
|
||||
using BootstrapBlazor.Components;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using Microsoft.Extensions.Configuration;
|
||||
using Microsoft.Extensions.DependencyInjection.Extensions;
|
||||
|
||||
namespace Microsoft.Extensions.DependencyInjection
|
||||
{
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
using BootstrapAdmin.DataAccess.Interface;
|
||||
using BootstrapAdmin.DataAccess.Core;
|
||||
|
||||
namespace BootstrapAdmin.DataAccess.EFCore.Services
|
||||
{
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
using BootstrapAdmin.DataAccess.EFCore;
|
||||
using BootstrapAdmin.DataAccess.Interface;
|
||||
using BootstrapAdmin.DataAccess.Core;
|
||||
using BootstrapAdmin.DataAccess.Models;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
using BootstrapAdmin.DataAccess.Interface;
|
||||
using BootstrapAdmin.DataAccess.Core;
|
||||
using BootstrapAdmin.DataAccess.PetaPoco;
|
||||
using BootstrapAdmin.DataAccess.PetaPoco.Services;
|
||||
using BootstrapBlazor.Components;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
using BootstrapAdmin.DataAccess.Interface;
|
||||
using BootstrapAdmin.DataAccess.Core;
|
||||
|
||||
namespace BootstrapAdmin.DataAccess.PetaPoco.Services
|
||||
{
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
using BootstrapAdmin.DataAccess.Interface;
|
||||
using BootstrapAdmin.DataAccess.Core;
|
||||
using BootstrapAdmin.DataAccess.Models;
|
||||
using PetaPoco;
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="BootstrapBlazor" Version="6.1.1-beta02" />
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
namespace BootstrapAdmin.DataAccess.Interface
|
||||
namespace BootstrapAdmin.DataAccess.Core
|
||||
{
|
||||
/// <summary>
|
||||
/// Dict 字典表接口
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
using BootstrapAdmin.DataAccess.Models;
|
||||
|
||||
namespace BootstrapAdmin.DataAccess.Interface
|
||||
namespace BootstrapAdmin.DataAccess.Core
|
||||
{
|
||||
/// <summary>
|
||||
///
|
||||
|
|
|
@ -1,11 +1,4 @@
|
|||
using Microsoft.AspNetCore.Authentication;
|
||||
using Microsoft.AspNetCore.Authentication.Cookies;
|
||||
using Microsoft.AspNetCore.Authorization;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
using Microsoft.AspNetCore.WebUtilities;
|
||||
using System.Security.Claims;
|
||||
|
||||
namespace Bootstrap.Admin.Controllers
|
||||
namespace Bootstrap.Admin.Controllers
|
||||
{
|
||||
///// <summary>
|
||||
///// Account controller.
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
using BootstrapAdmin.Web.Services;
|
||||
using BootstrapBlazor.DataAcces.PetaPoco;
|
||||
using System.Text;
|
||||
|
||||
namespace Microsoft.Extensions.DependencyInjection
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
using BootstrapAdmin.DataAccess.Interface;
|
||||
using BootstrapAdmin.DataAccess.Core;
|
||||
using BootstrapAdmin.Web.Extensions;
|
||||
|
||||
namespace BootstrapAdmin.Web.Shared
|
||||
|
|
|
@ -3,7 +3,6 @@ using Bootstrap.DataAccess;
|
|||
using Microsoft.AspNetCore.Authentication.Cookies;
|
||||
using Microsoft.AspNetCore.Authorization;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
using Microsoft.Extensions.Configuration;
|
||||
|
||||
namespace Bootstrap.Admin.Controllers
|
||||
{
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
using Bootstrap.Admin.Pages.Shared;
|
||||
using Microsoft.AspNetCore.Components;
|
||||
using Microsoft.AspNetCore.Components;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
using Bootstrap.Admin.Pages.Extensions;
|
||||
using Bootstrap.Admin.Pages.Shared;
|
||||
using Bootstrap.Admin.Pages.Shared;
|
||||
using Bootstrap.DataAccess;
|
||||
using Microsoft.AspNetCore.Components;
|
||||
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
using Bootstrap.Admin.Pages.Shared;
|
||||
|
||||
namespace Bootstrap.Admin.Pages.Components
|
||||
{
|
||||
/// <summary>
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
using Bootstrap.Admin.Pages.Extensions;
|
||||
using Bootstrap.Admin.Pages.Shared;
|
||||
using Microsoft.AspNetCore.Components;
|
||||
using Microsoft.AspNetCore.Components.Forms;
|
||||
using Microsoft.JSInterop;
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
using Bootstrap.Admin.Pages.Components;
|
||||
using Bootstrap.Admin.Pages.Shared;
|
||||
using Bootstrap.DataAccess;
|
||||
using Microsoft.AspNetCore.Components;
|
||||
using Microsoft.JSInterop;
|
||||
|
|
Loading…
Reference in New Issue