Example #1
0
 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;
 }
Example #2
0
 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;
 }