using calculator.Common; namespace calculator.View; public interface ICaculatorView { public event Action OperandPressed; public event Action OperatorPressed; public event Action ClearPressed; public event Action CalculatePressed; public event Action SingleOperatorPressed; public event Action Constants; public void UpdateView(string input); }