Ejemplo n.º 1
0
 public Dictionary(Guid dictionaryid, DictionaryType dictionarytype, string value, byte dictionarynumber)
 {
     this.dictionaryid= dictionaryid;
     this.dictionarytype= dictionarytype;
     this._value= value;
     this.dictionarynumber= dictionarynumber;
 }
Ejemplo n.º 2
0
 private static DictionaryType GetDictionaryTypeFromReader(IDataReader dataReader)
 {
     DictionaryType dictionaryType = new DictionaryType();
     dictionaryType.DictionaryTypeID = DBHelper.GetGuid(dataReader, "DictionaryTypeID");
     dictionaryType.Name = DBHelper.GetString(dataReader, "Name");
     return dictionaryType;
 }