Example #1
0
 /// <summary>
 /// 获取小车出入库位置
 /// </summary>
 /// <param name="CellCode"></param>
 /// <param name="TaskType"></param>
 /// <returns></returns>
 public DataTable GetCarSationInfo(string CellCode, string TaskType)
 {
     using (PersistentManager pm = new PersistentManager())
     {
         SysStationDao dao = new SysStationDao();
         return dao.GetCarSationInfo(CellCode, TaskType);
     }
 }