IShouldNormalize.cs 365 B

12345678910111213
  1. namespace Abp.Runtime.Validation
  2. {
  3. /// <summary>
  4. /// This interface is used to normalize inputs before method execution.
  5. /// </summary>
  6. public interface IShouldNormalize
  7. {
  8. /// <summary>
  9. /// This method is called lastly before method execution (after validation if exists).
  10. /// </summary>
  11. void Normalize();
  12. }
  13. }