Добавьте файлы проекта.

This commit is contained in:
RomaZhopka 2024-03-29 18:14:12 +03:00
parent 0396adddb6
commit dcfd7c6e70
21 changed files with 1928 additions and 0 deletions

View file

@ -0,0 +1,7 @@
namespace calculator.Services
{
public interface IInputService
{
public string TryInput(string input);
}
}