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