Force calculator was changed
This commit is contained in:
@@ -7,8 +7,8 @@ using System.Threading.Tasks;
|
||||
|
||||
namespace StructureHelperCommon.Infrastructures.Interfaces
|
||||
{
|
||||
public interface ICheckInputDataLogic : ICheckLogic
|
||||
public interface ICheckInputDataLogic<TInputData> : ICheckLogic where TInputData : IInputData
|
||||
{
|
||||
IInputData InputData { get; set; }
|
||||
TInputData InputData { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,14 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace StructureHelperCommon.Infrastructures.Interfaces
|
||||
{
|
||||
public interface IDecorator<T> where T : class
|
||||
{
|
||||
T SourceValue { get; }
|
||||
T GetModifiedValue();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user