7 lines
130 B
C#
7 lines
130 B
C#
namespace calculator.Services
|
|
{
|
|
public interface IInputService
|
|
{
|
|
public string TryInput(string input);
|
|
}
|
|
}
|