Example #1
0
 public EditCategoryController(
     IEditCategoryService editCategoryService,
     UserManager <ApplicationUser> userManager,
     IHttpContextAccessor contextAccessor)
 {
     this.editCategoryService = editCategoryService;
     this.userManager         = userManager;
     this.contextAccessor     = contextAccessor;
 }
Example #2
0
 public EditCategoryController(IEditCategoryService editCategoryService)
 {
     this.editCategoryService = editCategoryService;
 }