Ejemplo n.º 1
0
 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;
 }
Ejemplo n.º 2
0
 public SupplementController(ISupplementService supplementService, ISupplementCategoryService supplementCategoryService)
 {
     _supplementService         = supplementService;
     _supplementCategoryService = supplementCategoryService;
 }
Ejemplo n.º 3
0
 public CategoryViewComponent(ISupplementCategoryService supplementCategoryService, ISupplementSubCategoryService supplementSubCategoryService)
 {
     _supplementCategoryService    = supplementCategoryService;
     _supplementSubCategoryService = supplementSubCategoryService;
 }
Ejemplo n.º 4
0
 public NavBarViewComponentModel(ISupplementSubCategoryService supplementSubCategoryService, ISupplementCategoryService supplementCategoryService)
 {
     _supplementSubCategoryService = supplementSubCategoryService;
     _supplementCategoryService    = supplementCategoryService;
 }