示例#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();
 }
示例#2
0
 public UDCListModel()
 {
     this.udc = new UserDataContext();
     LoadListsFromDatabase();
 }