7.3.1 Adding a Controller; e.g. 7.6
This commit is contained in:
parent
91beed1a4e
commit
f33d1cd675
@ -0,0 +1,19 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Web;
|
||||
using System.Web.Mvc;
|
||||
using SportsStore.Domain.Abstract;
|
||||
|
||||
namespace SportsStore.WebUI.Controllers
|
||||
{
|
||||
public class ProductController : Controller
|
||||
{
|
||||
private IProductRepository repository;
|
||||
|
||||
public ProductController(IProductRepository productRepository)
|
||||
{
|
||||
repository = productRepository;
|
||||
}
|
||||
}
|
||||
}
|
@ -136,6 +136,7 @@
|
||||
<Compile Include="App_Start\FilterConfig.cs" />
|
||||
<Compile Include="App_Start\RouteConfig.cs" />
|
||||
<Compile Include="Controllers\HomeController.cs" />
|
||||
<Compile Include="Controllers\ProductrController.cs" />
|
||||
<Compile Include="Global.asax.cs">
|
||||
<DependentUpon>Global.asax</DependentUpon>
|
||||
</Compile>
|
||||
@ -182,6 +183,7 @@
|
||||
<ItemGroup>
|
||||
<Folder Include="App_Data\" />
|
||||
<Folder Include="Models\" />
|
||||
<Folder Include="Views\Productr\" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Content Include="fonts\glyphicons-halflings-regular.woff2" />
|
||||
|
Loading…
x
Reference in New Issue
Block a user