Files
StructureHelper/StructureHelperCommon/Services/DirectRoundLogic.cs
2024-06-02 16:56:44 +05:00

17 lines
322 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StructureHelperCommon.Services
{
public class DirectRoundLogic : IMathRoundLogic
{
public double RoundValue(double value)
{
return value;
}
}
}