namespace Abp.Runtime.Validation
{
///
/// This interface is used to normalize inputs before method execution.
///
public interface IShouldNormalize
{
///
/// This method is called lastly before method execution (after validation if exists).
///
void Normalize();
}
}