public string ResultType { get; set; }
private string _resultType;
get { return _resultType; }
NotifyOfPropertyChange(() => ResultType);
private void NotifyOfPropertyChange(Func<string> func)
public static void Main()
var config = new MapperConfiguration(cfg => {
cfg.CreateMap<Model, ViewModel>();
var mapper = config.CreateMapper();
var source = new Model { ResultType = "Test Result Type" };
var destination = mapper.Map<ViewModel>(source);
Console.WriteLine("ResultType: " + destination.ResultType);