csharp asp.net mvc控制器使用依赖注入
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了csharp asp.net mvc控制器使用依赖注入相关的知识,希望对你有一定的参考价值。
using didongexpress.bus.Bus;
using System.Web.Mvc;
namespace didongexpress.Controllers
{
public class HomeController : Controller
{
IProductBusiness _productBus = null;
public HomeController(IProductBusiness productBus)
{
_productBus = productBus;
}
public ActionResult Index()
{
var products = _productBus.AllProducts();
return View(products);
}
}
}
以上是关于csharp asp.net mvc控制器使用依赖注入的主要内容,如果未能解决你的问题,请参考以下文章
转007.ASP.NET MVC控制器依赖注入
csharp 在ASP.NET MVC中使用bundle
csharp 使用Typeahead与Asp.net MVC进行自动完成
ASP.NET Core MVC 之依赖注入 Controller
ASP.NET MVC IOC依赖注入之Autofac系列开篇
ASP.NET Core Web 应用程序系列- 使用ASP.NET Core内置的IoC容器DI进行批量依赖注入(MVC当中应用)