Ejemplo n.º 1
0
 private ClientType(IClientParserAbstract client)
 {
     Client      = client;
     Name        = client.ParserName;
     FixtureFile = client.FixtureFile;
 }
Ejemplo n.º 2
0
 public void AddClientParser(IClientParserAbstract parser)
 {
     clientParsers.Add(parser);
 }
Ejemplo n.º 3
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ClientType"/> class.
 /// </summary>
 /// <param name="client">Client.</param>
 private ClientType(IClientParserAbstract client)
 {
     this.Client      = client;
     this.Name        = client.ParserName;
     this.FixtureFile = client.FixtureFile;
 }