AwesomeAppRefactored.Events.NameChangedEventPostConverter.ApplyConversion C# (CSharp) Method

ApplyConversion() public method

public ApplyConversion ( object target, Type targetType, object>.IDictionary propertyData ) : void
target object
targetType System.Type
propertyData object>.IDictionary
return void
        public void ApplyConversion(object target, Type targetType, IDictionary<string, object> propertyData)
        {
            NameChangedEvent evnt = (NameChangedEvent)target;
            evnt.Name = string.Format("{0} {1}", propertyData["Forename"], propertyData["Surname"]);
        }
NameChangedEventPostConverter