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

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

11
View/ICaculatorView.cs Normal file
View file

@ -0,0 +1,11 @@
namespace calculator.View;
public interface ICaculatorView
{
public event Action<char> OperandPressed;
public event Action<string> OperatorPressed;
public event Action<string> SingleOperatorPressed;
public event Action ClearPressed;
public event Action CalculatePressed;
public void UpdateView(string input);
}