Add function decorator pattern

This commit is contained in:
Иван Ивашкин
2024-10-10 16:11:04 +05:00
parent 72add44fe7
commit b5ed00341c
8 changed files with 200 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StructureHelperCommon.Infrastructures.Interfaces
{
public interface IFunctionDecorator
{
public IOneVariableFunction OneVariableFunction { get; }
}
}