using HH.WMS.CoreServer.BLL; using HH.WMS.DAL; using HH.WMS.Entitys; using HH.WMS.Entitys.Algorithm; using HH.WMS.Entitys.Sys; using System; using System.Collections.Generic; using System.Data; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HH.WMS.CoreServer.BLL { public class DapperBaseBLL : BaseBLL { internal OperateResult UseTransaction(Action action) { return CreateDAL().UseTransaction(action); } } }