Example #1
0
 public AppsController(
     MqDbContext dbContext,
     UserManager <MqUser> userManager)
 {
     _dbContext   = dbContext;
     _userManager = userManager;
 }
Example #2
0
 public ApiController(
     UserManager <MqUser> userManager,
     SignInManager <MqUser> signInManager,
     ILoggerFactory loggerFactory,
     MqDbContext _context)
 {
     _userManager   = userManager;
     _signInManager = signInManager;
     _logger        = loggerFactory.CreateLogger <ApiController>();
     _dbContext     = _context;
 }
 public ListenController(MqDbContext dbContext,
                         WebSocketPusher pusher)
 {
     _dbContext = dbContext;
     _pusher    = pusher;
 }
Example #4
0
 public ChannelController(MqDbContext dbContext)
 {
     _dbContext = dbContext;
 }
Example #5
0
 public MessageController(MqDbContext dbContext)
 {
     _dbContext = dbContext;
 }