public static IList <TradingRelationship> Parse(string[] source) { return(source.Skip(2) .Select(p => OutputParser.Split(p, new [] { 15, 17, 22, 38 })) .Select(p => new TradingRelationship(p)) .ToList()); }
public static IList <MailboxItem> Parse(string[] source) { return(source.Skip(2) .Select(p => OutputParser.Split(p, new [] { 36, 38, 53, 68, 93, 95 })) .Select(p => new MailboxItem(p)) .ToList()); }
public static IList <PostboxItem> Parse(string[] source) { return(source.Skip(2) .Select(p => OutputParser.Split(p, new [] { 36, 53, 68, 83, 102 })) .Select(p => new PostboxItem(p)) .ToList()); }