using HH.WMS.Entitys.Basic; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HH.WMS.CoreServer.BLL { public class MongoBLL : BaseBLL { public bool AddList(List lstEntity, string collectionName) { return CreateDAL().AddList(lstEntity, collectionName); } public AutoBomItemEntity GetItemEntity(string itemCode) { return CreateDAL().GetItemEntity(itemCode); } #region 所有库区,作业区 /// /// 所有库区,作业区 /// /// public List GetArea() { return CreateDAL().GetArea(); } #endregion #region 获取所有自动库区 /// /// 获取所有自动库区 /// /// public List GetAutoAreas() { return CreateDAL().GetAutoAreas(); } #endregion } }