Example #1
0
 public ChartImporter(IAppContext appContext
                      , IChartCreater chartCreater
                      , IChartUpdater chartUpdater
                      , IChartFinder chartFinder)
 {
     _appContext   = appContext;
     _chartCreater = chartCreater;
     _chartUpdater = chartUpdater;
     _chartFinder  = chartFinder;
 }
Example #2
0
 public ChartRenderController(IWebAppContext appContext
                              , IQueryViewFinder queryViewFinder
                              , IChartBuilder chartBuilder
                              , IChartFinder chartFinder)
     : base(appContext)
 {
     _queryViewFinder = queryViewFinder;
     _chartBuilder    = chartBuilder;
     _chartFinder     = chartFinder;
 }
Example #3
0
 public ChartController(IWebAppContext appContext
                        , ISolutionService solutionService
                        , IEntityFinder entityFinder
                        , IChartCreater chartCreater
                        , IChartUpdater chartUpdater
                        , IChartFinder chartFinder
                        , IChartDeleter chartDeleter)
     : base(appContext, solutionService)
 {
     _entityFinder = entityFinder;
     _chartCreater = chartCreater;
     _chartUpdater = chartUpdater;
     _chartFinder  = chartFinder;
     _chartDeleter = chartDeleter;
 }
Example #4
0
 public ChartController(IWebAppContext appContext
                        , IChartFinder chartFinder)
     : base(appContext)
 {
     _chartFinder = chartFinder;
 }
Example #5
0
 public ChartExporter(IChartFinder chartFinder)
 {
     _chartFinder = chartFinder;
 }