14 lines
No EOL
422 B
C#
14 lines
No EOL
422 B
C#
using calculator.Common;
|
|
|
|
namespace calculator.View;
|
|
|
|
public interface ICaculatorView
|
|
{
|
|
public event Action<char> OperandPressed;
|
|
public event Action<Operation> OperatorPressed;
|
|
public event Action<bool> ClearPressed;
|
|
public event Action CalculatePressed;
|
|
public event Action<Operation> SingleOperatorPressed;
|
|
public event Action<Constants> Constants;
|
|
public void UpdateView(string input);
|
|
} |