public T Get <T>(bool recursive) { return(Objects.get <T>(GetCommand(), recursive)); }
public List <T> GetAll <T>(bool recursive) { return(Objects.getAll <T>(GetCommand(), recursive)); }
public T Get <T>() { return(Objects.get <T>(GetCommand(), true)); }
public List <T> GetAll <T>() { return(Objects.getAll <T>(GetCommand())); }