예제 #1
0
파일: Request.cs 프로젝트: simoneb/augen
 protected Request(Connection connection)
 {
     Tests = new List<Test>();
     connection.Add(this);
 }
예제 #2
0
파일: Request.cs 프로젝트: simoneb/augen
 internal Request(Connection connection, IEnumerable<Expression<Func<string, object>>> options)
     : base(options)
 {
     Tests = new List<Test>();
     connection.Add(this);
 }