Beispiel #1
0
 public QueryViewImporter(IAppContext appContext
                          , IQueryViewCreater queryViewCreater
                          , IQueryViewUpdater queryViewUpdater
                          , IQueryViewFinder queryViewFinder)
 {
     _appContext       = appContext;
     _queryViewCreater = queryViewCreater;
     _queryViewUpdater = queryViewUpdater;
     _queryViewFinder  = queryViewFinder;
 }
Beispiel #2
0
 public QueryViewCreaterController(IWebAppContext appContext
                                   , ISolutionService solutionService
                                   , IEntityFinder entityFinder
                                   , IRoleObjectAccessService roleObjectAccessService
                                   , IFetchDataService fetchDataService
                                   , IQueryViewCreater queryViewCreater
                                   , IQueryViewDeleter queryViewDeleter
                                   , IQueryViewFinder queryViewFinder
                                   , IQueryViewUpdater queryViewUpdater)
     : base(appContext, solutionService)
 {
     _entityFinder            = entityFinder;
     _roleObjectAccessService = roleObjectAccessService;
     _fetchDataService        = fetchDataService;
     _queryViewCreater        = queryViewCreater;
     _queryViewDeleter        = queryViewDeleter;
     _queryViewFinder         = queryViewFinder;
     _queryViewUpdater        = queryViewUpdater;
 }
Beispiel #3
0
 public QueryViewController(IWebAppContext appContext
                            , ISolutionService solutionService
                            , IEntityFinder entityFinder
                            , IRibbonButtonFinder ribbuttonFinder
                            , IFetchDataService fetchDataService
                            , IQueryViewCreater queryViewCreater
                            , IQueryViewDeleter queryViewDeleter
                            , IQueryViewFinder queryViewFinder
                            , IQueryViewUpdater queryViewUpdater
                            , IWebResourceFinder webResourceFinder)
     : base(appContext, solutionService)
 {
     _entityFinder      = entityFinder;
     _ribbuttonFinder   = ribbuttonFinder;
     _fetchDataService  = fetchDataService;
     _queryViewCreater  = queryViewCreater;
     _queryViewDeleter  = queryViewDeleter;
     _queryViewFinder   = queryViewFinder;
     _queryViewUpdater  = queryViewUpdater;
     _webResourceFinder = webResourceFinder;
 }
Beispiel #4
0
 public CreateDefaultViewConsumer(IQueryViewCreater queryViewCreater)
 {
     _queryViewCreater = queryViewCreater;
 }