public EntityMapImporter(IAppContext appContext , IEntityMapCreater entityMapCreater , IEntityMapUpdater entityMapUpdater , IEntityMapFinder entityMapFinder , IAttributeMapCreater attributeMapCreater , IAttributeMapDeleter attributeMapDeleter) { _appContext = appContext; _entityMapCreater = entityMapCreater; _entityMapUpdater = entityMapUpdater; _entityMapFinder = entityMapFinder; _attributeMapCreater = attributeMapCreater; _attributeMapDeleter = attributeMapDeleter; }
public EntityMapController(IWebAppContext appContext , ISolutionService solutionService , IEntityFinder entityFinder , IAttributeFinder attributeFinder , IRelationShipFinder relationShipFinder , IEntityMapCreater entityMapCreater , IEntityMapUpdater entityMapUpdater , IEntityMapFinder entityMapFinder , IEntityMapDeleter entityMapDeleter , IAttributeMapCreater attributeMapCreater , IAttributeMapFinder attributeMapFinder) : base(appContext, solutionService) { _entityFinder = entityFinder; _attributeFinder = attributeFinder; _relationShipFinder = relationShipFinder; _entityMapCreater = entityMapCreater; _entityMapUpdater = entityMapUpdater; _entityMapFinder = entityMapFinder; _entityMapDeleter = entityMapDeleter; _attributeMapCreater = attributeMapCreater; _attributeMapFinder = attributeMapFinder; }