Esempio n. 1
0
 public EntryCreator(Component component, string collectionName, IDictionary <string, string> elementMap, ProcessKeyValue processKeyValue)
 {
     Component       = component;
     ElementMap      = elementMap;
     CollectionName  = collectionName;
     ProcessKeyValue = processKeyValue;
 }
Esempio n. 2
0
 public EntryCreator(Component component, string collectionName, IDictionary <string, string> elementMap)
 {
     Component       = component;
     ElementMap      = elementMap;
     CollectionName  = collectionName;
     ProcessKeyValue = (key, text) => text;
 }