Interface IDataModelMappingHandler
Interface to the define the basic behavior of Domain Model object that can be mapped from a JSON response coming out of a REST request
public interface IDataModelMappingHandler
Properties
MappingHandler
Handler that will fire when a property mapping does cannot be done automatically
Func<FromJson, object> MappingHandler { get; set; }
Property Value
PostMappingHandler
Handler that will fire after the full json to model operation was done
Action<string> PostMappingHandler { get; set; }