/// <summary>
 /// Initializes a new instance of the <see cref="UPCoreMappingResultRowContext"/> class.
 /// </summary>
 /// <param name="result">
 /// The result.
 /// </param>
 /// <param name="context">
 /// The context.
 /// </param>
 public UPCoreMappingResultRowContext(UPCRMResult result, UPCoreMappingResultContext context)
     : this((UPCRMResultRow)result.ResultRowAtIndex(0), context)
 {
     this.RetainedResult = result;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="UPCoreMappingResultRowContext"/> class.
 /// </summary>
 /// <param name="row">
 /// The row.
 /// </param>
 /// <param name="context">
 /// The context.
 /// </param>
 public UPCoreMappingResultRowContext(UPCRMResultRow row, UPCoreMappingResultContext context)
 {
     this.Row     = row;
     this.Context = context;
 }