using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace StructureHelperCommon.Infrastructures.Interfaces { /// /// Logic for checking entities /// public interface ICheckLogic : ILogic { /// /// Text result of checking /// string CheckResult { get; } /// /// Start checking process /// /// bool Check(); } }