/// <summary>
        /// Добавить комментарий к заказу. БД
        /// </summary>
        /// <returns></returns>
        private async Task <IActionResult> AddCommentToOrderTmp()
        {
            OrderFunction = new OrderFunction();

            OrderFunction.AddCommentToOrderTmp(FollowerId, BotInfo.Id, Update.Message.Text);

            OrderFunction.Dispose();

            BotMessage = new OrderTempMessage(FollowerId, BotInfo.Id);

            await SendMessage(BotMessage.BuildMsg());

            return(base.OkResult);
        }