12 lines
236 B
C#
12 lines
236 B
C#
|
|
using DiunaBI.Domain.Entities;
|
||
|
|
|
||
|
|
namespace DiunaBI.Infrastructure.Interfaces;
|
||
|
|
|
||
|
|
public interface IDataValidator
|
||
|
|
{
|
||
|
|
string ValidatorType { get; }
|
||
|
|
|
||
|
|
bool CanValidate(string validatorType);
|
||
|
|
void Validate(Layer validationWorker);
|
||
|
|
}
|