예제 #1
0
 public List <VariableModel> GetAllVariables()
 {
     return(VariableMap.GetAllVariables());
 }
예제 #2
0
 /// <summary>
 /// Find the variable by the given id and return it. Return null if it is not found.
 /// </summary>
 /// <param name="id"> id The id to check for.</param>
 public VariableModel GetVariableById(string id)
 {
     return(VariableMap.GetVariableById(id));
 }
예제 #3
0
 public List <string> GetVariableTypes()
 {
     return(VariableMap.GetVariableTypes());
 }
예제 #4
0
 /// <summary>
 /// Find the variable by the given name and return it. Return null if it is not found.
 /// </summary>
 /// <param name="name"> The name to check for.</param>
 public VariableModel GetVariable(string name)
 {
     return(VariableMap.GetVariable(name));
 }