public List <VariableModel> GetAllVariables() { return(VariableMap.GetAllVariables()); }
/// <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)); }
public List <string> GetVariableTypes() { return(VariableMap.GetVariableTypes()); }
/// <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)); }