Browse Source

Fixed namespaces

pull/49/head
gdlcf88 6 years ago
parent
commit
d3a81e3ea3
  1. 1
      modules/EasyAbp.EShop.Baskets/src/EasyAbp.EShop.Baskets.Web/EasyAbp.EShop.Baskets.Web.csproj
  2. 7
      modules/EasyAbp.EShop.Baskets/src/EasyAbp.EShop.Baskets.Web/Pages/Baskets/Index.cshtml
  3. 7
      modules/EasyAbp.EShop.Baskets/src/EasyAbp.EShop.Baskets.Web/Pages/EShop/Baskets/Index.cshtml
  4. 2
      modules/EasyAbp.EShop.Baskets/src/EasyAbp.EShop.Baskets.Web/Pages/EShop/Baskets/Index.cshtml.cs
  5. 0
      modules/EasyAbp.EShop.Baskets/src/EasyAbp.EShop.Baskets.Web/Pages/EShop/Baskets/_ViewImports.cshtml
  6. 2
      modules/EasyAbp.EShop.Orders/src/EasyAbp.EShop.Orders.Web/Pages/EShop/Orders/Index.cshtml
  7. 2
      modules/EasyAbp.EShop.Products/src/EasyAbp.EShop.Products.Web/Pages/EShop/Products/Index.cshtml
  8. 2
      modules/EasyAbp.EShop.Stores/src/EasyAbp.EShop.Stores.Web/Pages/EShop/Stores/Index.cshtml

1
modules/EasyAbp.EShop.Baskets/src/EasyAbp.EShop.Baskets.Web/EasyAbp.EShop.Baskets.Web.csproj

@ -34,6 +34,7 @@
</ItemGroup>
<ItemGroup>
<Folder Include="Pages\EShop" />
<Folder Include="wwwroot\" />
</ItemGroup>

7
modules/EasyAbp.EShop.Baskets/src/EasyAbp.EShop.Baskets.Web/Pages/Baskets/Index.cshtml

@ -1,7 +0,0 @@
@page
@inherits EasyAbp.EShop.Baskets.Web.Pages.BasketsPage
@model EasyAbp.EShop.Baskets.Web.Pages.Baskets.IndexModel
@{
}
<h1>Baskets</h1>
<p>A sample page for the Baskets module.</p>

7
modules/EasyAbp.EShop.Baskets/src/EasyAbp.EShop.Baskets.Web/Pages/EShop/Baskets/Index.cshtml

@ -0,0 +1,7 @@
@page
@inherits EasyAbp.EShop.Baskets.Web.Pages.BasketsPage
@model EasyAbp.EShop.Baskets.Web.Pages.EShop.Baskets.IndexModel
@{
}
<h1>Baskets</h1>
<p>A sample page for the Baskets module.</p>

2
modules/EasyAbp.EShop.Baskets/src/EasyAbp.EShop.Baskets.Web/Pages/Baskets/Index.cshtml.cs → modules/EasyAbp.EShop.Baskets/src/EasyAbp.EShop.Baskets.Web/Pages/EShop/Baskets/Index.cshtml.cs

@ -1,4 +1,4 @@
namespace EasyAbp.EShop.Baskets.Web.Pages.Baskets
namespace EasyAbp.EShop.Baskets.Web.Pages.EShop.Baskets
{
public class IndexModel : BasketsPageModel
{

0
modules/EasyAbp.EShop.Baskets/src/EasyAbp.EShop.Baskets.Web/Pages/Baskets/_ViewImports.cshtml → modules/EasyAbp.EShop.Baskets/src/EasyAbp.EShop.Baskets.Web/Pages/EShop/Baskets/_ViewImports.cshtml

2
modules/EasyAbp.EShop.Orders/src/EasyAbp.EShop.Orders.Web/Pages/EShop/Orders/Index.cshtml

@ -1,6 +1,6 @@
@page
@inherits EasyAbp.EShop.Orders.Web.Pages.OrdersPage
@model EasyAbp.EShop.Orders.Web.Pages.Orders.IndexModel
@model EasyAbp.EShop.Orders.Web.Pages.EShop.Orders.IndexModel
@{
}
<h1>Orders</h1>

2
modules/EasyAbp.EShop.Products/src/EasyAbp.EShop.Products.Web/Pages/EShop/Products/Index.cshtml

@ -1,6 +1,6 @@
@page
@inherits EasyAbp.EShop.Products.Web.Pages.ProductsPage
@model EasyAbp.EShop.Products.Web.Pages.Products.IndexModel
@model EasyAbp.EShop.Products.Web.Pages.EShop.Products.IndexModel
@{
}
<h1>Products</h1>

2
modules/EasyAbp.EShop.Stores/src/EasyAbp.EShop.Stores.Web/Pages/EShop/Stores/Index.cshtml

@ -1,6 +1,6 @@
@page
@inherits EasyAbp.EShop.Stores.Web.Pages.StoresPage
@model EasyAbp.EShop.Stores.Web.Pages.Stores.IndexModel
@model EasyAbp.EShop.Stores.Web.Pages.EShop.Stores.IndexModel
@{
}
<h1>Stores</h1>

Loading…
Cancel
Save