17 lines
322 B
C#
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;
|
|
}
|
|
}
|
|
}
|