예제 #1
0
 public T Get <T>(bool recursive)
 {
     return(Objects.get <T>(GetCommand(), recursive));
 }
예제 #2
0
 public List <T> GetAll <T>(bool recursive)
 {
     return(Objects.getAll <T>(GetCommand(), recursive));
 }
예제 #3
0
 public T Get <T>()
 {
     return(Objects.get <T>(GetCommand(), true));
 }
예제 #4
0
 public List <T> GetAll <T>()
 {
     return(Objects.getAll <T>(GetCommand()));
 }