public DestinationConfigurationMemento(Type destinationType, IDescribeMappableProperty[] destinationProperties, ISourceContext[] sourceContexts, Convention[] conventions)
 {
     DestinationType = destinationType;
     DestinationProperties = destinationProperties;
     SourceContexts = sourceContexts;
     Conventions = conventions;
 }
Beispiel #2
0
 public SourcedConvention ApplyConvention(Convention convention)
 {
     return(convention.Apply(SourceType));
 }
Beispiel #3
0
 public SourcedConvention(Type sourceType,Convention inner,IResolveValue resolver)
 {
     this.sourceType = sourceType;
     this.inner = inner;
     this.resolver = resolver;
 }
Beispiel #4
0
 public SourcedConvention ApplyConvention(Convention convention)
 {
     return convention.Apply(SourceType);
 }
Beispiel #5
0
 public SourcedConvention ApplyConvention(Convention convention)
 {
     return inner.ApplyConvention(convention);
 }
Beispiel #6
0
 public SourcedConvention(Type sourceType, Convention inner, IResolveValue resolver)
 {
     this.sourceType = sourceType;
     this.inner      = inner;
     this.resolver   = resolver;
 }
Beispiel #7
0
 public SourcedConvention ApplyConvention(Convention convention)
 {
     return(inner.ApplyConvention(convention));
 }