Add function decorator pattern
This commit is contained in:
14
StructureHelperCommon/Models/Functions/ILimitFunction.cs
Normal file
14
StructureHelperCommon/Models/Functions/ILimitFunction.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
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 interface ILimitFunction : IFunctionDecorator
|
||||
{
|
||||
public void Limit();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user