3-商品管理EFf

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using MEH.Month.Test.IDAL;
using MEH.Month.Test.DAL;

namespace MEH.Month.Test.Factory
{
public class EFFactory : SumFactory
{
public override ICommon CreateCommonDal()
{
return new CommonDal();
}
}
}

原文地址:https://www.cnblogs.com/PingShengI/p/10147505.html