using HH.WMS.DAL.External;
using HH.WMS.Entitys.Autobom;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HH.WMS.BLL.External
{
///
/// 业务层(访问MongoDB的作业区流程)
///
public class TN_AB_B_WORK_AREA_PROBLL : BaseBLL
{
#region 获取作业区路由路径
///
/// 获取作业区路由路径
///
/// 作业类型
/// 起始作业区
/// 结束作业区
///
/// [Hanhe(DBS)] created 2018-4-9
public List GetRoute(string workType, string startArea, string endArea)
{
return CreateDAL().GetRoute(workType, startArea, endArea);
}
#endregion
}
}