first try

This commit is contained in:
2025-11-13 07:51:17 +04:00
parent e99f67905d
commit 5505f5152c
10 changed files with 722 additions and 0 deletions

20
Utils/OutputHelper.cs Normal file
View File

@@ -0,0 +1,20 @@
using System;
using su.divan2000.SalaryApp.Models;
namespace su.divan2000.SalaryApp.Utils
{
public static class OutputHelper
{
public static void PrintSalaryData(SalaryData data)
{
Console.WriteLine("\n=== Результат ===");
Console.WriteLine(data);
}
public static void WaitForKey(string message = "Нажмите любую клавишу, чтобы продолжить...")
{
Console.WriteLine(message);
Console.ReadKey();
}
}
}