Example #1
0
 public ChatDto Post([FromBody] ChatDto chat)
 {
     chat = _chatApplicationService.InsertChat(chat);
     return(chat);
 }