Example #1
0
 public SmoothProcessor(
     SmoothEngine smoothEngine,
     IModelLoaders modelLoaders,
     RootFolder rootFolder
     )
 {
     _smoothEngine = smoothEngine;
     _rootFolder   = rootFolder;
     _modelLoaders = modelLoaders;
 }
Example #2
0
 public static ImmutableSmoothData LoadSmoothData(
     IModelLoaders modelLoadingService,
     IReadOnlyCollection <string> salesAreaNames,
     DateTimeRange smoothPeriod,
     Action <string> raiseInfo
     ) => ImmutableSmoothData.Create(
     modelLoadingService,
     salesAreaNames,
     smoothPeriod,
     raiseInfo
     );