Esempio n. 1
0
        public static List <BaseParkinfo> QueryParkingByRecordIds(List <string> recordIds)
        {
            if (recordIds == null || recordIds.Count == 0)
            {
                throw new ArgumentNullException("recordIds");
            }
            IParking factory = ParkingFactory.GetFactory();

            return(factory.QueryParkingByRecordIds(recordIds));
        }