Ejemplo n.º 1
0
        public static ParkIORecord GetIORecordContainsDelete(string recordID, out string ErrorMessage)
        {
            if (recordID.IsEmpty())
            {
                throw new ArgumentNullException("recordID");
            }

            IParkIORecord factory = ParkIORecordFactory.GetFactory();

            return(factory.GetIORecordContainsDelete(recordID, out ErrorMessage));
        }