public PageToolsViewComponent(IScrambleService scrambleService,
                               ICategoryService categoryService)
 {
     _model           = new PageToolsViewModel();
     _scrambleService = scrambleService;
     _categoryService = categoryService;
 }
 public CategoriesController(
     ICategoryService categoryService,
     IScrambleService scrambleService,
     IConfiguration configuration)
 {
     _categoryService = categoryService;
     _scrambleService = scrambleService;
     _configuration   = configuration;
 }
 public TimerController(ISeriesService seriesService,
                        UserManager <UserModel> userManager,
                        ICubeService cubeService,
                        ICategoryService categoryService,
                        IScrambleService scrambleService)
 {
     _seriesService   = seriesService;
     _userManager     = userManager;
     _cubeService     = cubeService;
     _categoryService = categoryService;
     _scrambleService = scrambleService;
 }