Example #1
0
 public EntityUpdater(
     IStructuralPropertyBinder structuralPropertyBinder,
     INavigationPropertyBinder navigationPropertyBinder,
     IUncontainedNavigationPropertyParser navigationPropertyParser)
     : base(structuralPropertyBinder)
 {
     this.navigationPropertyBinder = navigationPropertyBinder;
     this.navigationPropertyParser = navigationPropertyParser;
 }
Example #2
0
 public EntityCreator(
     IStructuralPropertyBinder structuralPropertyBinder,
     INavigationPropertyBinder navigationPropertyBinder,
     IUncontainedNavigationPropertyParser navigationPropertyParser,
     IDependencyResolver dependencyResolver)
     : base(structuralPropertyBinder)
 {
     this.navigationPropertyBinder = navigationPropertyBinder;
     this.navigationPropertyParser = navigationPropertyParser;
     this.dependencyResolver       = dependencyResolver;
 }
 protected WritingEntityProcessorBase(IStructuralPropertyBinder structuralPropertyBinder)
 {
     this.structuralPropertyBinder = structuralPropertyBinder;
 }