14 changed files with 25 additions and 49 deletions
@ -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.Models |
|||
namespace Microsoft.eShopWeb.Business.Entities |
|||
{ |
|||
public class CatalogItem |
|||
{ |
|||
@ -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,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; } |
|||
} |
|||
} |
|||
Loading…
Reference in new issue