Esempio n. 1
0
 public DialogService(ChatNpgSQLContext context,
                      IDialogRepository dialogRepository,
                      IMapper mapper,
                      IChatEventRepository chatEventRepository,
                      IBotNotifier botNotifier)
 {
     _context             = context;
     _dialogRepository    = dialogRepository;
     _mapper              = mapper;
     _chatEventRepository = chatEventRepository;
     _botNotifier         = botNotifier;
 }
Esempio n. 2
0
 public MessageService(ChatNpgSQLContext context,
                       IMessageRepository messageRepository,
                       IChatEventRepository chatEventRepository,
                       IMapper mapper,
                       IBotNotifier botNotifier)
 {
     _context             = context;
     _messageRepository   = messageRepository;
     _mapper              = mapper;
     _chatEventRepository = chatEventRepository;
     _botNotifier         = botNotifier;
 }
Esempio n. 3
0
 public UserRepository(ChatNpgSQLContext context)
 {
     _context = context;
 }
Esempio n. 4
0
 public MessageRepository(ChatNpgSQLContext context)
 {
     _context = context;
 }
Esempio n. 5
0
 public BotRepository(ChatNpgSQLContext context)
 {
     _context = context;
 }
Esempio n. 6
0
 public DialogRepository(ChatNpgSQLContext context)
 {
     _context = context;
 }
Esempio n. 7
0
 public BotActionOnEventRepository(ChatNpgSQLContext context)
 {
     _context = context;
 }
Esempio n. 8
0
 public ChatEventRepository(ChatNpgSQLContext context)
 {
     _context = context;
 }
Esempio n. 9
0
 public BotService(ChatNpgSQLContext myDBContext, IBotRepository botRepository, IMapper mapper)
 {
     _myDBContext   = myDBContext;
     _botRepository = botRepository;
     _mapper        = mapper;
 }