示例#1
0
 public T Load <T>(string fileName, RepositorySimpleLoadDelegate <T> load) where T : class
 {
     return(Load(null, fileName, load));
 }
示例#2
0
 public T Load <T>(string treFileName, string fileName, RepositorySimpleLoadDelegate <T> load) where T : class
 {
     return(Load(treFileName, fileName, (tfn, fn, stream) => load(stream)));
 }