public static async Task SendStatsExtended(this TelegramBotClient bot, Message message,
                                                   RegistrationRepository registrationRepository, int savedCups)
        {
            var firstAndLastRegistration = registrationRepository.GetFirstAndLastRegistrations();

            await bot.Send(message, $"{Helpers.TotalSavedText(savedCups)}\n\n" +
                           $"Tower size: {Helpers.GetTotalTowerSize(savedCups):#.##} meters.\n" +
                           $"Total length: {Helpers.GetTotalLength(savedCups):#.##} meters.\n\n" +

                           $"First registration: {firstAndLastRegistration.Item1.Timestamp}.\n" +
                           $"Last registration: {firstAndLastRegistration.Item2.Timestamp}.\n",
                           false);
        }