using DiunaBI.Domain.Entities; namespace DiunaBI.Infrastructure.Interfaces; public interface IDataValidator { string ValidatorType { get; } bool CanValidate(string validatorType); void Validate(Layer validationWorker); }