예제 #1
0
 public T GetById(long id)
 {
     return(ThreadExecuter.Execute(
                () => BaseRepo.GetById(id)
                ));
 }
예제 #2
0
 public T GetById(params object[] KeyValues)
 {
     return(baseDao.GetById(KeyValues));
 }