├── src
├── eShopOnBlazor
│ ├── Pages
│ │ ├── _Imports.razor
│ │ ├── Catalog
│ │ │ ├── Details.razor
│ │ │ ├── Delete.razor
│ │ │ └── Create.razor
│ │ └── Index.razor
│ ├── wwwroot
│ │ ├── Pics
│ │ │ ├── 1.png
│ │ │ ├── 10.png
│ │ │ ├── 11.png
│ │ │ ├── 12.png
│ │ │ ├── 2.png
│ │ │ ├── 3.png
│ │ │ ├── 4.png
│ │ │ ├── 5.png
│ │ │ ├── 6.png
│ │ │ ├── 7.png
│ │ │ ├── 8.png
│ │ │ ├── 9.png
│ │ │ └── dummy.png
│ │ ├── favicon.ico
│ │ ├── images
│ │ │ ├── brand.png
│ │ │ ├── brand_dark.png
│ │ │ ├── main_banner.png
│ │ │ └── main_footer_text.png
│ │ ├── fonts
│ │ │ ├── Montserrat-Bold.eot
│ │ │ ├── Montserrat-Bold.ttf
│ │ │ ├── Montserrat-Bold.woff
│ │ │ ├── Montserrat-Bold.woff2
│ │ │ ├── Montserrat-Regular.eot
│ │ │ ├── Montserrat-Regular.ttf
│ │ │ ├── Montserrat-Regular.woff
│ │ │ └── Montserrat-Regular.woff2
│ │ └── css
│ │ │ ├── open-iconic
│ │ │ ├── font
│ │ │ │ └── fonts
│ │ │ │ │ ├── open-iconic.eot
│ │ │ │ │ ├── open-iconic.otf
│ │ │ │ │ ├── open-iconic.ttf
│ │ │ │ │ └── open-iconic.woff
│ │ │ ├── ICON-LICENSE
│ │ │ ├── README.md
│ │ │ └── FONT-LICENSE
│ │ │ ├── custom.css
│ │ │ ├── base.css
│ │ │ ├── bootstrap
│ │ │ └── bootstrap-reboot.min.css
│ │ │ └── site.css
│ ├── Setup
│ │ ├── CatalogTypes.csv
│ │ ├── CatalogItems.zip
│ │ ├── CatalogBrands.csv
│ │ └── CatalogItems.csv
│ ├── Models
│ │ ├── CatalogType.cs
│ │ ├── CatalogBrand.cs
│ │ ├── Infrastructure
│ │ │ ├── dbo.catalog_hilo.Sequence.sql
│ │ │ ├── dbo.catalog_brand_hilo.Sequence.sql
│ │ │ ├── dbo.catalog_type_hilo.Sequence.sql
│ │ │ └── PreconfiguredData.cs
│ │ ├── CatalogItemHiLoGenerator.cs
│ │ ├── CatalogItem.cs
│ │ └── CatalogDBContext.cs
│ ├── ActivityIdHelper.cs
│ ├── Routes.razor
│ ├── WebRequestInfo.cs
│ ├── appsettings.Development.json
│ ├── _Imports.razor
│ ├── appsettings.json
│ ├── Services
│ │ ├── ICatalogService.cs
│ │ ├── CatalogService.cs
│ │ └── CatalogServiceMock.cs
│ ├── log4Net.xml
│ ├── App.razor
│ ├── ViewModel
│ │ └── PaginatedItemsViewModel.cs
│ ├── Shared
│ │ ├── NavMenu.razor
│ │ └── MainLayout.razor
│ ├── eShopOnBlazor.csproj
│ └── Program.cs
└── eShopLegacyWebForms
│ ├── Global.asax
│ ├── Pics
│ ├── 1.png
│ ├── 2.png
│ ├── 3.png
│ ├── 4.png
│ ├── 5.png
│ ├── 6.png
│ ├── 7.png
│ ├── 8.png
│ ├── 9.png
│ ├── 10.png
│ ├── 11.png
│ ├── 12.png
│ └── dummy.png
│ ├── favicon.ico
│ ├── images
│ ├── brand.png
│ ├── brand_dark.png
│ ├── main_banner.png
│ └── main_footer_text.png
│ ├── Setup
│ ├── CatalogTypes.csv
│ ├── CatalogItems.zip
│ ├── CatalogBrands.csv
│ └── CatalogItems.csv
│ ├── fonts
│ ├── Montserrat-Bold.eot
│ ├── Montserrat-Bold.ttf
│ ├── Montserrat-Bold.woff
│ ├── Montserrat-Bold.woff2
│ ├── Montserrat-Regular.eot
│ ├── Montserrat-Regular.ttf
│ ├── Montserrat-Regular.woff
│ └── Montserrat-Regular.woff2
│ ├── Bundle.config
│ ├── ViewSwitcher.ascx
│ ├── Models
│ ├── CatalogBrand.cs
│ ├── CatalogType.cs
│ ├── Infrastructure
│ │ ├── dbo.catalog_hilo.Sequence.sql
│ │ ├── dbo.catalog_type_hilo.Sequence.sql
│ │ ├── dbo.catalog_brand_hilo.Sequence.sql
│ │ └── PreconfiguredData.cs
│ ├── CatalogItemHiLoGenerator.cs
│ ├── CatalogItem.cs
│ └── CatalogDBContext.cs
│ ├── About.aspx
│ ├── Site.Mobile.Master.cs
│ ├── About.aspx.cs
│ ├── Contact.aspx.cs
│ ├── About.aspx.designer.cs
│ ├── Contact.aspx.designer.cs
│ ├── ViewSwitcher.ascx.designer.cs
│ ├── Catalog
│ ├── Delete.aspx.designer.cs
│ ├── Details.aspx.designer.cs
│ ├── Details.aspx.cs
│ ├── Delete.aspx.cs
│ ├── Create.aspx.cs
│ ├── Edit.aspx.cs
│ ├── Details.aspx
│ ├── Delete.aspx
│ ├── Create.aspx.designer.cs
│ └── Edit.aspx.designer.cs
│ ├── Content
│ ├── custom.css
│ ├── base.css
│ ├── bootstrap-reboot.min.css
│ └── site.css
│ ├── Site.Master.cs
│ ├── log4Net.xml
│ ├── Services
│ ├── ICatalogService.cs
│ ├── CatalogService.cs
│ └── CatalogServiceMock.cs
│ ├── Contact.aspx
│ ├── ViewModel
│ └── PaginatedItemsViewModel.cs
│ ├── Site.Mobile.Master
│ ├── Site.Master.designer.cs
│ ├── Modules
│ └── ApplicationModule.cs
│ ├── App_Start
│ ├── RouteConfig.cs
│ └── BundleConfig.cs
│ ├── Web.Debug.config
│ ├── Web.Release.config
│ ├── Scripts
│ ├── WebForms
│ │ ├── DetailsView.js
│ │ ├── GridView.js
│ │ ├── MSAjax
│ │ │ ├── MicrosoftAjaxTimer.js
│ │ │ ├── MicrosoftAjaxWebServices.js
│ │ │ └── MicrosoftAjaxSerialization.js
│ │ └── Focus.js
│ ├── respond.min.js
│ ├── respond.matchmedia.addListener.min.js
│ └── index.d.ts
│ ├── Properties
│ └── AssemblyInfo.cs
│ ├── Default.aspx.designer.cs
│ ├── ViewSwitcher.ascx.cs
│ ├── Site.Mobile.Master.designer.cs
│ ├── Default.aspx.cs
│ ├── Global.asax.cs
│ ├── Site.Master
│ └── packages.config
├── README.md
├── LICENSE
└── eShopOnBlazor.sln
/src/eShopOnBlazor/Pages/_Imports.razor:
--------------------------------------------------------------------------------
1 | @layout MainLayout
2 | @using Microsoft.Extensions.Logging
3 |
--------------------------------------------------------------------------------
/src/eShopLegacyWebForms/Global.asax:
--------------------------------------------------------------------------------
1 | <%@ Application Codebehind="Global.asax.cs" Inherits="eShopLegacyWebForms.Global" Language="C#" %>
2 |
--------------------------------------------------------------------------------
/src/eShopLegacyWebForms/Pics/1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnet-architecture/eShopOnBlazor/HEAD/src/eShopLegacyWebForms/Pics/1.png
--------------------------------------------------------------------------------
/src/eShopLegacyWebForms/Pics/2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnet-architecture/eShopOnBlazor/HEAD/src/eShopLegacyWebForms/Pics/2.png
--------------------------------------------------------------------------------
/src/eShopLegacyWebForms/Pics/3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnet-architecture/eShopOnBlazor/HEAD/src/eShopLegacyWebForms/Pics/3.png
--------------------------------------------------------------------------------
/src/eShopLegacyWebForms/Pics/4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnet-architecture/eShopOnBlazor/HEAD/src/eShopLegacyWebForms/Pics/4.png
--------------------------------------------------------------------------------
/src/eShopLegacyWebForms/Pics/5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnet-architecture/eShopOnBlazor/HEAD/src/eShopLegacyWebForms/Pics/5.png
--------------------------------------------------------------------------------
/src/eShopLegacyWebForms/Pics/6.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnet-architecture/eShopOnBlazor/HEAD/src/eShopLegacyWebForms/Pics/6.png
--------------------------------------------------------------------------------
/src/eShopLegacyWebForms/Pics/7.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnet-architecture/eShopOnBlazor/HEAD/src/eShopLegacyWebForms/Pics/7.png
--------------------------------------------------------------------------------
/src/eShopLegacyWebForms/Pics/8.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnet-architecture/eShopOnBlazor/HEAD/src/eShopLegacyWebForms/Pics/8.png
--------------------------------------------------------------------------------
/src/eShopLegacyWebForms/Pics/9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnet-architecture/eShopOnBlazor/HEAD/src/eShopLegacyWebForms/Pics/9.png
--------------------------------------------------------------------------------
/src/eShopLegacyWebForms/Pics/10.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnet-architecture/eShopOnBlazor/HEAD/src/eShopLegacyWebForms/Pics/10.png
--------------------------------------------------------------------------------
/src/eShopLegacyWebForms/Pics/11.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnet-architecture/eShopOnBlazor/HEAD/src/eShopLegacyWebForms/Pics/11.png
--------------------------------------------------------------------------------
/src/eShopLegacyWebForms/Pics/12.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnet-architecture/eShopOnBlazor/HEAD/src/eShopLegacyWebForms/Pics/12.png
--------------------------------------------------------------------------------
/src/eShopLegacyWebForms/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnet-architecture/eShopOnBlazor/HEAD/src/eShopLegacyWebForms/favicon.ico
--------------------------------------------------------------------------------
/src/eShopOnBlazor/wwwroot/Pics/1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnet-architecture/eShopOnBlazor/HEAD/src/eShopOnBlazor/wwwroot/Pics/1.png
--------------------------------------------------------------------------------
/src/eShopOnBlazor/wwwroot/Pics/10.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnet-architecture/eShopOnBlazor/HEAD/src/eShopOnBlazor/wwwroot/Pics/10.png
--------------------------------------------------------------------------------
/src/eShopOnBlazor/wwwroot/Pics/11.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnet-architecture/eShopOnBlazor/HEAD/src/eShopOnBlazor/wwwroot/Pics/11.png
--------------------------------------------------------------------------------
/src/eShopOnBlazor/wwwroot/Pics/12.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnet-architecture/eShopOnBlazor/HEAD/src/eShopOnBlazor/wwwroot/Pics/12.png
--------------------------------------------------------------------------------
/src/eShopOnBlazor/wwwroot/Pics/2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnet-architecture/eShopOnBlazor/HEAD/src/eShopOnBlazor/wwwroot/Pics/2.png
--------------------------------------------------------------------------------
/src/eShopOnBlazor/wwwroot/Pics/3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnet-architecture/eShopOnBlazor/HEAD/src/eShopOnBlazor/wwwroot/Pics/3.png
--------------------------------------------------------------------------------
/src/eShopOnBlazor/wwwroot/Pics/4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnet-architecture/eShopOnBlazor/HEAD/src/eShopOnBlazor/wwwroot/Pics/4.png
--------------------------------------------------------------------------------
/src/eShopOnBlazor/wwwroot/Pics/5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnet-architecture/eShopOnBlazor/HEAD/src/eShopOnBlazor/wwwroot/Pics/5.png
--------------------------------------------------------------------------------
/src/eShopOnBlazor/wwwroot/Pics/6.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnet-architecture/eShopOnBlazor/HEAD/src/eShopOnBlazor/wwwroot/Pics/6.png
--------------------------------------------------------------------------------
/src/eShopOnBlazor/wwwroot/Pics/7.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnet-architecture/eShopOnBlazor/HEAD/src/eShopOnBlazor/wwwroot/Pics/7.png
--------------------------------------------------------------------------------
/src/eShopOnBlazor/wwwroot/Pics/8.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnet-architecture/eShopOnBlazor/HEAD/src/eShopOnBlazor/wwwroot/Pics/8.png
--------------------------------------------------------------------------------
/src/eShopOnBlazor/wwwroot/Pics/9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnet-architecture/eShopOnBlazor/HEAD/src/eShopOnBlazor/wwwroot/Pics/9.png
--------------------------------------------------------------------------------
/src/eShopOnBlazor/wwwroot/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnet-architecture/eShopOnBlazor/HEAD/src/eShopOnBlazor/wwwroot/favicon.ico
--------------------------------------------------------------------------------
/src/eShopLegacyWebForms/Pics/dummy.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnet-architecture/eShopOnBlazor/HEAD/src/eShopLegacyWebForms/Pics/dummy.png
--------------------------------------------------------------------------------
/src/eShopOnBlazor/Setup/CatalogTypes.csv:
--------------------------------------------------------------------------------
1 | CatalogType
2 | Mug
3 | T-Shirt
4 | Sheet
5 | USB Memory Stick
6 | CatalogTypeTestOne
7 | CatalogTypeTestTwo
--------------------------------------------------------------------------------
/src/eShopLegacyWebForms/images/brand.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnet-architecture/eShopOnBlazor/HEAD/src/eShopLegacyWebForms/images/brand.png
--------------------------------------------------------------------------------
/src/eShopOnBlazor/Setup/CatalogItems.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnet-architecture/eShopOnBlazor/HEAD/src/eShopOnBlazor/Setup/CatalogItems.zip
--------------------------------------------------------------------------------
/src/eShopOnBlazor/wwwroot/Pics/dummy.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnet-architecture/eShopOnBlazor/HEAD/src/eShopOnBlazor/wwwroot/Pics/dummy.png
--------------------------------------------------------------------------------
/src/eShopOnBlazor/wwwroot/images/brand.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnet-architecture/eShopOnBlazor/HEAD/src/eShopOnBlazor/wwwroot/images/brand.png
--------------------------------------------------------------------------------
/src/eShopLegacyWebForms/Setup/CatalogTypes.csv:
--------------------------------------------------------------------------------
1 | CatalogType
2 | Mug
3 | T-Shirt
4 | Sheet
5 | USB Memory Stick
6 | CatalogTypeTestOne
7 | CatalogTypeTestTwo
--------------------------------------------------------------------------------
/src/eShopLegacyWebForms/Setup/CatalogItems.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnet-architecture/eShopOnBlazor/HEAD/src/eShopLegacyWebForms/Setup/CatalogItems.zip
--------------------------------------------------------------------------------
/src/eShopLegacyWebForms/images/brand_dark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnet-architecture/eShopOnBlazor/HEAD/src/eShopLegacyWebForms/images/brand_dark.png
--------------------------------------------------------------------------------
/src/eShopLegacyWebForms/images/main_banner.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnet-architecture/eShopOnBlazor/HEAD/src/eShopLegacyWebForms/images/main_banner.png
--------------------------------------------------------------------------------
/src/eShopOnBlazor/wwwroot/images/brand_dark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnet-architecture/eShopOnBlazor/HEAD/src/eShopOnBlazor/wwwroot/images/brand_dark.png
--------------------------------------------------------------------------------
/src/eShopLegacyWebForms/fonts/Montserrat-Bold.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnet-architecture/eShopOnBlazor/HEAD/src/eShopLegacyWebForms/fonts/Montserrat-Bold.eot
--------------------------------------------------------------------------------
/src/eShopLegacyWebForms/fonts/Montserrat-Bold.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnet-architecture/eShopOnBlazor/HEAD/src/eShopLegacyWebForms/fonts/Montserrat-Bold.ttf
--------------------------------------------------------------------------------
/src/eShopOnBlazor/Setup/CatalogBrands.csv:
--------------------------------------------------------------------------------
1 | CatalogBrand
2 | Azure
3 | .NET
4 | Visual Studio
5 | SQL Server
6 | Other
7 | CatalogBrandTestOne
8 | CatalogBrandTestTwo
--------------------------------------------------------------------------------
/src/eShopOnBlazor/wwwroot/images/main_banner.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnet-architecture/eShopOnBlazor/HEAD/src/eShopOnBlazor/wwwroot/images/main_banner.png
--------------------------------------------------------------------------------
/src/eShopLegacyWebForms/Setup/CatalogBrands.csv:
--------------------------------------------------------------------------------
1 | CatalogBrand
2 | Azure
3 | .NET
4 | Visual Studio
5 | SQL Server
6 | Other
7 | CatalogBrandTestOne
8 | CatalogBrandTestTwo
--------------------------------------------------------------------------------
/src/eShopLegacyWebForms/fonts/Montserrat-Bold.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnet-architecture/eShopOnBlazor/HEAD/src/eShopLegacyWebForms/fonts/Montserrat-Bold.woff
--------------------------------------------------------------------------------
/src/eShopLegacyWebForms/fonts/Montserrat-Bold.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnet-architecture/eShopOnBlazor/HEAD/src/eShopLegacyWebForms/fonts/Montserrat-Bold.woff2
--------------------------------------------------------------------------------
/src/eShopLegacyWebForms/fonts/Montserrat-Regular.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnet-architecture/eShopOnBlazor/HEAD/src/eShopLegacyWebForms/fonts/Montserrat-Regular.eot
--------------------------------------------------------------------------------
/src/eShopLegacyWebForms/fonts/Montserrat-Regular.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnet-architecture/eShopOnBlazor/HEAD/src/eShopLegacyWebForms/fonts/Montserrat-Regular.ttf
--------------------------------------------------------------------------------
/src/eShopLegacyWebForms/images/main_footer_text.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnet-architecture/eShopOnBlazor/HEAD/src/eShopLegacyWebForms/images/main_footer_text.png
--------------------------------------------------------------------------------
/src/eShopOnBlazor/wwwroot/fonts/Montserrat-Bold.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnet-architecture/eShopOnBlazor/HEAD/src/eShopOnBlazor/wwwroot/fonts/Montserrat-Bold.eot
--------------------------------------------------------------------------------
/src/eShopOnBlazor/wwwroot/fonts/Montserrat-Bold.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnet-architecture/eShopOnBlazor/HEAD/src/eShopOnBlazor/wwwroot/fonts/Montserrat-Bold.ttf
--------------------------------------------------------------------------------
/src/eShopOnBlazor/wwwroot/fonts/Montserrat-Bold.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnet-architecture/eShopOnBlazor/HEAD/src/eShopOnBlazor/wwwroot/fonts/Montserrat-Bold.woff
--------------------------------------------------------------------------------
/src/eShopLegacyWebForms/fonts/Montserrat-Regular.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnet-architecture/eShopOnBlazor/HEAD/src/eShopLegacyWebForms/fonts/Montserrat-Regular.woff
--------------------------------------------------------------------------------
/src/eShopLegacyWebForms/fonts/Montserrat-Regular.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnet-architecture/eShopOnBlazor/HEAD/src/eShopLegacyWebForms/fonts/Montserrat-Regular.woff2
--------------------------------------------------------------------------------
/src/eShopOnBlazor/wwwroot/fonts/Montserrat-Bold.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnet-architecture/eShopOnBlazor/HEAD/src/eShopOnBlazor/wwwroot/fonts/Montserrat-Bold.woff2
--------------------------------------------------------------------------------
/src/eShopOnBlazor/wwwroot/fonts/Montserrat-Regular.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnet-architecture/eShopOnBlazor/HEAD/src/eShopOnBlazor/wwwroot/fonts/Montserrat-Regular.eot
--------------------------------------------------------------------------------
/src/eShopOnBlazor/wwwroot/fonts/Montserrat-Regular.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnet-architecture/eShopOnBlazor/HEAD/src/eShopOnBlazor/wwwroot/fonts/Montserrat-Regular.ttf
--------------------------------------------------------------------------------
/src/eShopOnBlazor/wwwroot/images/main_footer_text.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnet-architecture/eShopOnBlazor/HEAD/src/eShopOnBlazor/wwwroot/images/main_footer_text.png
--------------------------------------------------------------------------------
/src/eShopOnBlazor/wwwroot/fonts/Montserrat-Regular.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnet-architecture/eShopOnBlazor/HEAD/src/eShopOnBlazor/wwwroot/fonts/Montserrat-Regular.woff
--------------------------------------------------------------------------------
/src/eShopOnBlazor/wwwroot/fonts/Montserrat-Regular.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnet-architecture/eShopOnBlazor/HEAD/src/eShopOnBlazor/wwwroot/fonts/Montserrat-Regular.woff2
--------------------------------------------------------------------------------
/src/eShopOnBlazor/Models/CatalogType.cs:
--------------------------------------------------------------------------------
1 | namespace eShopOnBlazor.Models;
2 |
3 | public class CatalogType
4 | {
5 | public int Id { get; set; }
6 | public string Type { get; set; }
7 | }
8 |
--------------------------------------------------------------------------------
/src/eShopOnBlazor/Models/CatalogBrand.cs:
--------------------------------------------------------------------------------
1 | namespace eShopOnBlazor.Models;
2 |
3 | public class CatalogBrand
4 | {
5 | public int Id { get; set; }
6 | public string Brand { get; set; }
7 | }
8 |
--------------------------------------------------------------------------------
/src/eShopOnBlazor/wwwroot/css/open-iconic/font/fonts/open-iconic.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnet-architecture/eShopOnBlazor/HEAD/src/eShopOnBlazor/wwwroot/css/open-iconic/font/fonts/open-iconic.eot
--------------------------------------------------------------------------------
/src/eShopOnBlazor/wwwroot/css/open-iconic/font/fonts/open-iconic.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnet-architecture/eShopOnBlazor/HEAD/src/eShopOnBlazor/wwwroot/css/open-iconic/font/fonts/open-iconic.otf
--------------------------------------------------------------------------------
/src/eShopOnBlazor/wwwroot/css/open-iconic/font/fonts/open-iconic.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnet-architecture/eShopOnBlazor/HEAD/src/eShopOnBlazor/wwwroot/css/open-iconic/font/fonts/open-iconic.ttf
--------------------------------------------------------------------------------
/src/eShopOnBlazor/wwwroot/css/open-iconic/font/fonts/open-iconic.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnet-architecture/eShopOnBlazor/HEAD/src/eShopOnBlazor/wwwroot/css/open-iconic/font/fonts/open-iconic.woff
--------------------------------------------------------------------------------
/src/eShopLegacyWebForms/Bundle.config:
--------------------------------------------------------------------------------
1 |
2 |
Sorry, but there's nothing here!
8 |Use this area to provide additional information.
7 |
7 |
8 |