Добавьте файлы проекта.
This commit is contained in:
parent
0396adddb6
commit
dcfd7c6e70
21 changed files with 1928 additions and 0 deletions
7
Services/ICaculator.cs
Normal file
7
Services/ICaculator.cs
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
namespace calculator.Services;
|
||||
|
||||
public interface ICaculator
|
||||
{
|
||||
string Calculate(string op1, string op2, string operation);
|
||||
string SingleOperation(string operand, string operation);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue