Files
StructureHelper/StructureHelperCommon/Models/Functions/TableFunction.cs

45 lines
1.2 KiB
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 TableFunction : IOneVariableFunction
{
public bool IsUser { get; set; }
public FunctionType Type { get; set; }
public string Name { get; set; }
public string Description { get; set; }
public bool Check()
{
throw new NotImplementedException();
}
public double GetByX(double xValue)
{
throw new NotImplementedException();
}
}
public class CopyOfTableFunction : IOneVariableFunction
{
public bool IsUser { get; set; }
public FunctionType Type { get; set; }
public string Name { get; set; }
public string Description { get; set; }
public bool Check()
{
throw new NotImplementedException();
}
public double GetByX(double xValue)
{
throw new NotImplementedException();
}
}
}