Пример #1
0
        public static int GetAreaCarNum(string areaID, BaseCarType cartype, out string ErrorMessage)
        {
            if (areaID.IsEmpty())
            {
                throw new ArgumentNullException("areaID");
            }

            IParkIORecord factory = ParkIORecordFactory.GetFactory();

            return(factory.GetAreaCarNum(areaID, cartype, out ErrorMessage));
        }