예제 #1
0
 public TranslationKey(int id, TranslationKey fallbackTranslationKey, Translation translation, int?languageID, Service service, string name, DateTime updated, DateTime created) : base(id, updated, created, false)
 {
     this._fallbackTranslationKey = fallbackTranslationKey;
     this._translation            = translation;
     this._languageID             = languageID;
     this._service = service;
     this._name    = name;
 }
예제 #2
0
 public TranslationValue(int id, TranslationKey translationKey, TranslationGroupKey translationGroupKey, string value, DateTime updated, DateTime created) : base(id, updated, created, false)
 {
     this._translationKey      = translationKey;
     this._translationGroupKey = translationGroupKey;
     this._value = value;
 }