Ejemplo n.º 1
0
        /// <summary>
        /// 根据派车单ID获取派遣单
        /// </summary>
        /// <param name="PlanID"></param>
        /// <returns></returns>
        public static ParkLpPlan Search_ParkLpPlanByID(string PlanID)
        {
            if (string.IsNullOrWhiteSpace(PlanID))
            {
                throw new ArgumentNullException("PlanID");
            }
            IParkLpPlan factory = ParkLpPlanFactory.GetFactory();
            ParkLpPlan  model   = factory.Search_ParkLpPlanByID(PlanID);

            return(model);
        }