Moving entity models to Business project
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>netstandard1.4</TargetFramework>
|
<TargetFramework>netstandard1.4</TargetFramework>
|
||||||
|
|||||||
8
src/Business/Entities/CatalogBrand.cs
Normal file
8
src/Business/Entities/CatalogBrand.cs
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
namespace Microsoft.eShopWeb.Business.Entities
|
||||||
|
{
|
||||||
|
public class CatalogBrand
|
||||||
|
{
|
||||||
|
public int Id { get; set; }
|
||||||
|
public string Brand { get; set; }
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,6 +1,4 @@
|
|||||||
using System;
|
namespace Microsoft.eShopWeb.Business.Entities
|
||||||
|
|
||||||
namespace Microsoft.eShopWeb.Models
|
|
||||||
{
|
{
|
||||||
public class CatalogItem
|
public class CatalogItem
|
||||||
{
|
{
|
||||||
9
src/Business/Entities/CatalogType.cs
Normal file
9
src/Business/Entities/CatalogType.cs
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
namespace Microsoft.eShopWeb.Business.Entities
|
||||||
|
{
|
||||||
|
public class CatalogType
|
||||||
|
{
|
||||||
|
public int Id { get; set; }
|
||||||
|
|
||||||
|
public string Type { get; set; }
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,3 +0,0 @@
|
|||||||
*
|
|
||||||
!obj/Docker/publish/*
|
|
||||||
!obj/Docker/empty/
|
|
||||||
@@ -1,6 +0,0 @@
|
|||||||
FROM microsoft/aspnetcore:1.1
|
|
||||||
ARG source
|
|
||||||
WORKDIR /app
|
|
||||||
EXPOSE 80
|
|
||||||
COPY ${source:-obj/Docker/publish} .
|
|
||||||
ENTRYPOINT ["dotnet", "eShopWeb.dll"]
|
|
||||||
@@ -1,8 +1,8 @@
|
|||||||
namespace Microsoft.eShopWeb.Infrastructure
|
namespace Microsoft.eShopWeb.Infrastructure
|
||||||
{
|
{
|
||||||
using eShopWeb.Models;
|
|
||||||
using Microsoft.EntityFrameworkCore;
|
using Microsoft.EntityFrameworkCore;
|
||||||
using Microsoft.EntityFrameworkCore.Metadata.Builders;
|
using Microsoft.EntityFrameworkCore.Metadata.Builders;
|
||||||
|
using Microsoft.eShopWeb.Business.Entities;
|
||||||
|
|
||||||
public class CatalogContext : DbContext
|
public class CatalogContext : DbContext
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
namespace Microsoft.eShopWeb.Infrastructure
|
namespace Microsoft.eShopWeb.Infrastructure
|
||||||
{
|
{
|
||||||
using eShopWeb.Models;
|
|
||||||
using Microsoft.AspNetCore.Builder;
|
using Microsoft.AspNetCore.Builder;
|
||||||
using Microsoft.EntityFrameworkCore;
|
using Microsoft.EntityFrameworkCore;
|
||||||
|
using Microsoft.eShopWeb.Business.Entities;
|
||||||
using Microsoft.Extensions.Logging;
|
using Microsoft.Extensions.Logging;
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|||||||
@@ -1,15 +0,0 @@
|
|||||||
namespace Microsoft.eShopWeb.Models
|
|
||||||
{
|
|
||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Linq;
|
|
||||||
using System.Threading.Tasks;
|
|
||||||
|
|
||||||
|
|
||||||
public class CatalogBrand
|
|
||||||
{
|
|
||||||
public int Id { get; set; }
|
|
||||||
|
|
||||||
public string Brand { get; set; }
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,14 +0,0 @@
|
|||||||
namespace Microsoft.eShopWeb.Models
|
|
||||||
{
|
|
||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Linq;
|
|
||||||
using System.Threading.Tasks;
|
|
||||||
|
|
||||||
public class CatalogType
|
|
||||||
{
|
|
||||||
public int Id { get; set; }
|
|
||||||
|
|
||||||
public string Type { get; set; }
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,12 +1,12 @@
|
|||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using Microsoft.eShopWeb.Models;
|
|
||||||
using Microsoft.AspNetCore.Mvc.Rendering;
|
using Microsoft.AspNetCore.Mvc.Rendering;
|
||||||
using Microsoft.EntityFrameworkCore;
|
using Microsoft.EntityFrameworkCore;
|
||||||
using Microsoft.Extensions.Options;
|
using Microsoft.Extensions.Options;
|
||||||
using Microsoft.eShopWeb.Infrastructure;
|
using Microsoft.eShopWeb.Infrastructure;
|
||||||
using Microsoft.eShopWeb.ViewModels;
|
using Microsoft.eShopWeb.ViewModels;
|
||||||
|
using Microsoft.eShopWeb.Business.Entities;
|
||||||
|
|
||||||
namespace Microsoft.eShopWeb.Services
|
namespace Microsoft.eShopWeb.Services
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
using Microsoft.eShopWeb.Models;
|
using Microsoft.eShopWeb.Business.Entities;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
||||||
namespace Microsoft.eShopWeb.ViewModels
|
namespace Microsoft.eShopWeb.ViewModels
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
using Microsoft.eShopWeb.Models;
|
using Microsoft.AspNetCore.Mvc.Rendering;
|
||||||
using Microsoft.AspNetCore.Mvc.Rendering;
|
using Microsoft.eShopWeb.Business.Entities;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
||||||
namespace Microsoft.eShopWeb.ViewModels
|
namespace Microsoft.eShopWeb.ViewModels
|
||||||
|
|||||||
@@ -28,7 +28,6 @@
|
|||||||
<DotNetCliToolReference Include="Microsoft.EntityFrameworkCore.Tools.DotNet" Version="1.0.0-msbuild3-final" />
|
<DotNetCliToolReference Include="Microsoft.EntityFrameworkCore.Tools.DotNet" Version="1.0.0-msbuild3-final" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Folder Include="Models\" />
|
|
||||||
<Folder Include="Pics\" />
|
<Folder Include="Pics\" />
|
||||||
<Folder Include="Views\Catalog\" />
|
<Folder Include="Views\Catalog\" />
|
||||||
<Folder Include="wwwroot\css\catalog\" />
|
<Folder Include="wwwroot\css\catalog\" />
|
||||||
|
|||||||
Reference in New Issue
Block a user