篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了csharp asp.net mvc业务层实现相关的知识,希望对你有一定的参考价值。
using didongexpress.domains;
using didongexpress.repos;
using didongexpress.repos.Repos;
using System.Collections.Generic;
namespace didongexpress.bus.Bus
{
public interface IProductBusiness : IBusiness
{
List<ProductIndex> AllProducts();
}
public class ProductBusiness : Business, IProductBusiness
{
public ProductBusiness(IUnitOfWork unit) : base(unit)
{
}
public List<ProductIndex> AllProducts()
{
var products = _unit.Get<IProductRepository>().AllProducts();
return products;
}
}
}
以上是关于csharp asp.net mvc业务层实现的主要内容,如果未能解决你的问题,请参考以下文章