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();
}
}
}