3-商品管理SumF

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

namespace MEH.Month.Test.Factory
{
public abstract class SumFactory
{
public abstract ICommon CreateCommonDal();
public static SumFactory GetFactory()
{
//返回EF工厂
return new EFFactory();
}
}
}

posted @ 2018-12-20 09:35  平生。  阅读(153)  评论(0)    收藏  举报