示例#1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="UPMResultRowProviderForCalendarResult"/> class.
 /// </summary>
 /// <param name="theDelegate">
 /// The the delegate.
 /// </param>
 /// <param name="context">
 /// The context.
 /// </param>
 public UPMResultRowProviderForCalendarResult(
     IResultRowProviderDelegate theDelegate,
     UPCoreMappingResultContext context)
     : this(null, theDelegate, context)
 {
     this.resultRows    = new List <ICalendarItem>();
     this.resultContext = context;
 }
示例#2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="UPMResultRowProviderForCalendarResult"/> class.
 /// </summary>
 /// <param name="result">
 /// The result.
 /// </param>
 /// <param name="theDelegate">
 /// The the delegate.
 /// </param>
 /// <param name="context">
 /// The context.
 /// </param>
 public UPMResultRowProviderForCalendarResult(
     List <ICalendarItem> result,
     IResultRowProviderDelegate theDelegate,
     UPCoreMappingResultContext context)
     : base(theDelegate)
 {
     this.resultRows    = result;
     this.resultContext = context;
 }
示例#3
0
 /// <summary>
 /// Initializes a new instance of the <see cref="UPResultRowProvider"/> class.
 /// </summary>
 /// <param name="theDelegate">
 /// The the delegate.
 /// </param>
 public UPResultRowProvider(IResultRowProviderDelegate theDelegate)
 {
     this.TheDelegate = theDelegate;
 }
示例#4
0
 /// <summary>
 /// Initializes a new instance of the <see cref="UPResultRowFromCRMResultRows"/> class.
 /// </summary>
 /// <param name="theDelegate">
 /// The the delegate.
 /// </param>
 public UPResultRowFromCRMResultRows(IResultRowProviderDelegate theDelegate)
     : base(theDelegate)
 {
     this.crmResultRows = new List <UPCRMResultRow>();
 }
示例#5
0
 /// <summary>
 /// Initializes a new instance of the <see cref="UPResultRowProviderForCRMResult"/> class.
 /// </summary>
 /// <param name="result">
 /// The result.
 /// </param>
 /// <param name="theDelegate">
 /// The the delegate.
 /// </param>
 public UPResultRowProviderForCRMResult(UPCRMResult result, IResultRowProviderDelegate theDelegate)
     : base(theDelegate)
 {
     this.Result = result;
 }