public DashBoardController(IInboxMessageRepsitory inboxMessageRepsitory, ICategoryRepository categoryRepository, ITableTrackUserRepository tableTrackUserRepository)
 {
     _categoryRepository       = categoryRepository;
     _tableTrackUserRepository = tableTrackUserRepository;
     _inboxMessageRepsitory    = inboxMessageRepsitory;
 }
示例#2
0
 public TablesTrackerHup(IHubContext <TablesTrackerHup> hubContext, ITableTrackNotification tableTrackNotification, ITableTrackUserRepository tableTrackUserRepository)
 {
     _hubContext               = hubContext;
     _tableTrackNotification   = tableTrackNotification;
     _tableTrackUserRepository = tableTrackUserRepository;
 }