mirror of
https://github.com/wwiinnddyy/LanMountainDesktop.git
synced 2026-06-21 08:04:26 +08:00
18 lines
440 B
C#
18 lines
440 B
C#
namespace LanMountainDesktop.Services;
|
|
|
|
public interface ICalculatorDataService
|
|
{
|
|
string ApplyInputToken(string currentInput, string token);
|
|
|
|
decimal ParseAmountOrZero(string? inputText);
|
|
|
|
string FormatAmount(decimal amount, int maxFractionDigits = 4);
|
|
}
|
|
|
|
public static class CalculatorInputTokens
|
|
{
|
|
public const string Clear = "AC";
|
|
public const string Backspace = "BACK";
|
|
public const string DecimalPoint = ".";
|
|
}
|