标签:thread factory lin abstract pac task read .text namespace
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();
}
}
}
标签:thread factory lin abstract pac task read .text namespace
原文地址:https://www.cnblogs.com/PingShengI/p/10147509.html