Files
StructureHelper/StructureHelperCommon/Infrastructures/Interfaces/IOneVariableFunction.cs
Иван Ивашкин b5ed00341c Add function decorator pattern
2024-10-10 16:11:04 +05:00

18 lines
450 B
C#

using StructureHelperCommon.Infrastructures.Enums;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StructureHelperCommon.Infrastructures.Interfaces
{
public interface IOneVariableFunction
{
public FunctionType Type { get; set; }
public string Name { get; set; }
public bool Check();
public double GetByX(double xValue);
}
}