public NorthwindDataContext(IRepository repository, TestContextWriter testContextWriter)
     : this(repository) {
     if (this.Provider != null)
     {
         this.Provider.Log = testContextWriter;
     }
 }
Exemple #2
0
 public NorthwindDataContext(IRepository repository, TestContextWriter testContextWriter)
     : this(repository)
 {
     if (this.Provider != null) {
         this.Provider.Log = testContextWriter;
     }
 }
 public NorthwindDataContext(string connectionString, TestContextWriter testContextWriter)
     : this(CreateRepository(connectionString), testContextWriter)
 {
 }
Exemple #4
0
 public NorthwindDataContext(string connectionString, TestContextWriter testContextWriter)
     : this(CreateRepository(connectionString), testContextWriter)
 {
 }