AcceptanceTests.Asserts.Import.OperationDataAssert.GetIsoSpatialRecords C# (CSharp) Method

GetIsoSpatialRecords() private static method

private static GetIsoSpatialRecords ( string tlgA, string currentPath ) : IEnumerable
tlgA string
currentPath string
return IEnumerable
        private static IEnumerable<ISOSpatialRow> GetIsoSpatialRecords(string tlgA, string currentPath)
        {
            var xmlReader = new XmlReader();
            var timHeader = xmlReader.ReadTlgXmlData(currentPath, tlgA + ".xml");
            var binaryReader = new BinaryReader();
            return binaryReader.Read(currentPath, tlgA + ".bin", timHeader.First()).ToList();
        }