public AlertController(IAlertService alertService, IDemoExample demoExample, IGraphServiceProvider graphServiceProvider, IMemoryCacheHelper memoryCacheHelper) { _alertService = alertService; _demoExample = demoExample; _memoryCacheHelper = memoryCacheHelper; _graphServiceProvider = graphServiceProvider; }
public MemoryCacheHelper(IMemoryCache memoryCache, IDemoExample demoExample) { _cache = memoryCache; _demoExample = demoExample; }
public ActionController(IGraphServiceProvider graphServiceProvider, IDemoExample demoExample, IActionService actionService) { _graphServiceProvider = graphServiceProvider; _actionService = actionService; _demoExample = demoExample; }