Example #1
0
        public static moduleModel.PropertyDictionaryValue ToModuleModel(this webModel.PropertyDictionaryValue propDictValue)
        {
            var retVal = new moduleModel.PropertyDictionaryValue();

            retVal.InjectFrom(propDictValue);
            return(retVal);
        }
		public static webModel.PropertyDictionaryValue ToWebModel(this moduleModel.PropertyDictionaryValue propDictValue)
		{
			var retVal = new webModel.PropertyDictionaryValue();
			retVal.InjectFrom(propDictValue);

			return retVal;
		}
        public static webModel.PropertyDictionaryValue ToWebModel(this moduleModel.PropertyDictionaryValue propDictValue)
        {
            var retVal = new webModel.PropertyDictionaryValue();

            retVal.Id           = propDictValue.Id;
            retVal.PropertyId   = propDictValue.PropertyId;
            retVal.Value        = propDictValue.Value;
            retVal.LanguageCode = propDictValue.LanguageCode;
            retVal.Alias        = propDictValue.Alias;

            return(retVal);
        }