root/StructuredWeb/StructuredWeb/Validation/ValidationFramework/Interfaces/IValidator.cs

User picture

Author: marisic.net

Revision: 112 («Previous)


File Size: 315 Bytes

(February 11, 2009 19:04 UTC) Over 3 years ago


  

 
Show/hide line numbers
#region Using Statements

using StructuredWeb.ValidationFramework.Result;

#endregion

namespace StructuredWeb.ValidationFramework.Interfaces
{
    public interface IValidator<T>
    {
        ValidationResult Validate(T obj);
        ValidationResult Validate(T obj, bool suppressWarnings);
    }
}