Exemplo n.º 1
0
 public void AddUpdateChatListing(TelegramChat telegramChat)
 {
     if (_chatBotRepository.CheckIfChatExistsByTelegramChatId(telegramChat.Id))
     {
         UpdateChatListing(telegramChat);
     }
     else
     {
         AddChatListing(telegramChat);
     }
 }