Force crack calculator was fixed
This commit is contained in:
@@ -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 ICheckEntityLogic<TEntity> : ICheckLogic
|
||||
{
|
||||
TEntity Entity { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -6,9 +6,19 @@ using System.Threading.Tasks;
|
||||
|
||||
namespace StructureHelperCommon.Infrastructures.Interfaces
|
||||
{
|
||||
/// <summary>
|
||||
/// Logic for checking entities
|
||||
/// </summary>
|
||||
public interface ICheckLogic : ILogic
|
||||
{
|
||||
/// <summary>
|
||||
/// Text result of checking
|
||||
/// </summary>
|
||||
string CheckResult { get; }
|
||||
/// <summary>
|
||||
/// Start checking process
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
bool Check();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user