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