public AdminController(IExerciseService exerciseService, IExerciseTypeService exerciseTypeService, IHostingEnvironment hostingEnvironment, ISupplementCategoryService supplementCategoryService, ISupplementService supplementService, ISupplementSubCategoryService supplementSubCategoryService, ITrainerService trainerService, IBlogPostService blogPostService, UserManager <CustomIdentityUser> userManager, CustomIdentityContext customIdentityContext, IOrderLineService orderLineService) { _exerciseService = exerciseService; _exerciseTypeService = exerciseTypeService; _hostingEnvironment = hostingEnvironment; _supplementCategoryService = supplementCategoryService; _supplementService = supplementService; _supplementSubCategoryService = supplementSubCategoryService; _trainerService = trainerService; _blogPostService = blogPostService; _userManager = userManager; _customIdentityContext = customIdentityContext; _orderLineService = orderLineService; }
public SupplementController(ISupplementService supplementService, ISupplementCategoryService supplementCategoryService) { _supplementService = supplementService; _supplementCategoryService = supplementCategoryService; }
public CategoryViewComponent(ISupplementCategoryService supplementCategoryService, ISupplementSubCategoryService supplementSubCategoryService) { _supplementCategoryService = supplementCategoryService; _supplementSubCategoryService = supplementSubCategoryService; }
public NavBarViewComponentModel(ISupplementSubCategoryService supplementSubCategoryService, ISupplementCategoryService supplementCategoryService) { _supplementSubCategoryService = supplementSubCategoryService; _supplementCategoryService = supplementCategoryService; }