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());
 }
Example #2
0
 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());
 }
Example #3
0
 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());
 }