public HelpController(
     IHelpTaskService helpTaskService,
     IProfileService profileService)
 {
     this.helpTaskService = helpTaskService;
     this.profileService  = profileService;
 }
 public FormsController(
     IItemService itemService,
     IHelpTaskService helpTaskService,
     IChatService chatService,
     IProfileService profileService,
     IWebHostEnvironment webHostEnviroment,
     UserManager <ApplicationUser> userManager)
 {
     this.itemService       = itemService;
     this.helpTaskService   = helpTaskService;
     this.chatService       = chatService;
     this.profileService    = profileService;
     this.webHostEnviroment = webHostEnviroment;
     this.userManager       = userManager;
 }