Создайте ResultAmount класс. Это вернет описание результата, а не строку. Примерно так:
class ResultAmount
{
public string Label { get; set; }
public decimal SumAmount { get; set; }
public override string ToString()
{
return $"{Label}: {SumAmount}";
}
}
Для разных фабрик значение Label может отличаться. Тогда у вас есть фабрика:
class TotalCalculations
{
public ResultAmount SumAggregatoryFactory()
{
return new ResultAmount
{
Label = "Total",
SumAmount = 100
};
}
}
И точка вызова фабрики:
class BillingService
{
public void Print(TotalCalculations calc)
{
//when calling the method, you can use the standard Label
string original = calc.SumAggregatoryFactory().ToString();
//or take only the sum and configure the result string yourself
string custom = $"My message: {calc.SumAggregatoryFactory().SumAmount}";
}
}