Пример #1
0
        public Message[] GetByThreadId(string threadId)
        {
            Thread thread = _threadService.Get(threadId);

            return(_messageService.GetByThread(thread));
        }
Пример #2
0
 public ActionResult <List <Thread> > Get() =>
 _threadService.Get();