Exemplo n.º 1
0
 public RibbonButtonImporter(IAppContext appContext
                             , IRibbonButtonCreater ribbonButtonCreater
                             , IRibbonButtonUpdater ribbonButtonUpdater
                             , IRibbonButtonFinder ribbonButtonFinder)
 {
     _appContext          = appContext;
     _ribbonButtonCreater = ribbonButtonCreater;
     _ribbonButtonUpdater = ribbonButtonUpdater;
     _ribbonButtonFinder  = ribbonButtonFinder;
 }
Exemplo n.º 2
0
 public RibbonButtonController(IWebAppContext appContext
                               , IRibbonButtonFinder ribbonButtonFinder
                               , IRibbonButtonUpdater ribbonButtonUpdater
                               , IEntityFinder entityFinder
                               , IDefaultButtonProvider defaultButtonProvider
                               )
     : base(appContext)
 {
     _ribbonButtonFinder    = ribbonButtonFinder;
     _ribbonButtonUpdater   = ribbonButtonUpdater;
     _entityFinder          = entityFinder;
     _defaultButtonProvider = defaultButtonProvider;
 }
Exemplo n.º 3
0
 public RibbonButtonCreaterController(IWebAppContext appContext
                                      , ISolutionService solutionService
                                      , IEntityFinder entityFinder
                                      , IRibbonButtonCreater ribbonButtonCreater
                                      , IRibbonButtonFinder ribbonButtonFinder
                                      , IRibbonButtonUpdater ribbonButtonUpdater
                                      , IRibbonButtonDeleter ribbonButtonDeleter
                                      , IWebResourceFinder webResourceFinder)
     : base(appContext, solutionService)
 {
     _entityFinder        = entityFinder;
     _ribbonButtonCreater = ribbonButtonCreater;
     _ribbonButtonFinder  = ribbonButtonFinder;
     _ribbonButtonUpdater = ribbonButtonUpdater;
     _ribbonButtonDeleter = ribbonButtonDeleter;
     _webResourceFinder   = webResourceFinder;
 }