Calculator/View/ICaculatorView.cs
2024-03-29 18:14:12 +03:00

11 lines
No EOL
338 B
C#

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);
}