Esempio n. 1
0
 public ChartImporter(IAppContext appContext
                      , IChartCreater chartCreater
                      , IChartUpdater chartUpdater
                      , IChartFinder chartFinder)
 {
     _appContext   = appContext;
     _chartCreater = chartCreater;
     _chartUpdater = chartUpdater;
     _chartFinder  = chartFinder;
 }
Esempio n. 2
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;
 }