using System; using System.Collections.Generic; using System.Text; using DllScan.DAL; using DllEapEntity; using Cksoft.Data; using Cksoft.Data.Repository; namespace DllScanForFiles.BLL { partial class OrderMstBLL { public IEnumerable GetTreeModels() { using (IDatabase db = DbFactory.Base("eap")) { var dal = new OrderMstDal(db); return dal.GetTreeModels(); } } } }