Calculator/View/ICaculatorView.cs
Мария d3836d6cfc Добавлены операци:
SqrtY,
Factorial,
CubeRoot,
Square,
Cube,
PowY,
Log,
Ln,
Exp,
Inv,
Pi,
Sinh,
Sin,
Cosh,
Cos,
Tanh,
Tan
2024-04-04 22:49:32 +03:00

13 lines
No EOL
376 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 void UpdateView(string input);
}