Добавьте файлы проекта.
This commit is contained in:
parent
0396adddb6
commit
dcfd7c6e70
21 changed files with 1928 additions and 0 deletions
11
View/ICaculatorView.cs
Normal file
11
View/ICaculatorView.cs
Normal 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);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue