Example #1
0
 public HomeController(ILogger <HomeController> logger, SendGridEmailSender sendGridEmailSender, IUserService userService, IContactsChatService contactsChatService,
                       UserManager <User> userManager, IProductService productService)
 {
     _logger = logger;
     this.sendGridEmailSender = sendGridEmailSender;
     this.userService         = userService;
     this.contactsChatService = contactsChatService;
     this.userManager         = userManager;
     this.productService      = productService;
 }
 public ContactsNewMessagesNumber(IContactsChatService contactsChatService, IUserService userService)
 {
     this.contactsChatService = contactsChatService;
     this.userService         = userService;
 }
 public ContactsChatHub(IUserService userService, IContactsChatService contactsChatService)
 {
     this.userService         = userService;
     this.contactsChatService = contactsChatService;
 }