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

41 lines
1021 B
C#

using StructureHelperCommon.Infrastructures.Enums;
using StructureHelperCommon.Infrastructures.Interfaces;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StructureHelperCommon.Models.Functions
{
public class FormulaFunction : IOneVariableFunction
{
public FunctionType Type { get; set; }
public string Name { get; set; }
public bool Check()
{
throw new NotImplementedException();
}
public double GetByX(double xValue)
{
throw new NotImplementedException();
}
}
public class CopyOfFormulaFunction : IOneVariableFunction
{
public FunctionType Type { get; set; }
public string Name { get; set; }
public bool Check()
{
throw new NotImplementedException();
}
public double GetByX(double xValue)
{
throw new NotImplementedException();
}
}
}