/Source/Bifrost.Fakes/Commands/AnotherSimpleCommandBusinessValidator.cs

# · C# · 16 lines · 15 code · 1 blank · 0 comment · 0 complexity · dde55298607dd3e0c504237fb1029a61 MD5 · raw file

  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations;
  4. using Bifrost.Commands;
  5. using Bifrost.Validation;
  6. namespace Bifrost.Fakes.Commands
  7. {
  8. public class AnotherSimpleCommandBusinessValidator : CommandBusinessValidator<AnotherSimpleCommand>
  9. {
  10. public override IEnumerable<ValidationResult> Validate(AnotherSimpleCommand instance)
  11. {
  12. throw new NotImplementedException();
  13. }
  14. }
  15. }