Example #1
0
 // Special constructor for testing use - should only be accessed in Echo.test
 internal UDCListModel(string ConnectionString, bool overWrite)
 {
     this.udc = new UserDataContext(ConnectionString, overWrite);
     LoadListsFromDatabase();
 }
Example #2
0
 public UDCListModel()
 {
     this.udc = new UserDataContext();
     LoadListsFromDatabase();
 }