Renaming innermost project to ApplicationCore

This commit is contained in:
Steve Smith
2017-03-22 22:19:33 -04:00
parent d48d8bf24d
commit c871497569
14 changed files with 32 additions and 28 deletions

View File

@@ -0,0 +1,7 @@
namespace Microsoft.eShopWeb.ApplicationCore.Entities
{
public class BaseEntity
{
public int Id { get; set; }
}
}

View File

@@ -0,0 +1,7 @@
namespace Microsoft.eShopWeb.ApplicationCore.Entities
{
public class CatalogBrand : BaseEntity
{
public string Brand { get; set; }
}
}

View File

@@ -0,0 +1,15 @@
namespace Microsoft.eShopWeb.ApplicationCore.Entities
{
public class CatalogItem : BaseEntity
{
public string Name { get; set; }
public string Description { get; set; }
public decimal Price { get; set; }
public string PictureUri { get; set; }
public int CatalogTypeId { get; set; }
public CatalogType CatalogType { get; set; }
public int CatalogBrandId { get; set; }
public CatalogBrand CatalogBrand { get; set; }
public CatalogItem() { }
}
}

View File

@@ -0,0 +1,7 @@
namespace Microsoft.eShopWeb.ApplicationCore.Entities
{
public class CatalogType : BaseEntity
{
public string Type { get; set; }
}
}