using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using Abp.Dependency;
namespace Abp.Runtime.Validation.Interception
{
///
/// This interface is used to validate method parameters.
///
public interface IMethodParameterValidator : ITransientDependency
{
IReadOnlyList Validate(object validatingObject);
}
}