Calculator/Commands/ICommand.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

7 lines
No EOL
101 B
C#

namespace calculator.Commands;
public interface ICommand
{
void Execute();
void Undo();
}