/Source/Bifrost.Fakes/Commands/AnotherSimpleCommandBusinessValidator.cs
# · C# · 16 lines · 15 code · 1 blank · 0 comment · 0 complexity · dde55298607dd3e0c504237fb1029a61 MD5 · raw file
- using System;
- using System.Collections.Generic;
- using System.ComponentModel.DataAnnotations;
- using Bifrost.Commands;
- using Bifrost.Validation;
-
- namespace Bifrost.Fakes.Commands
- {
- public class AnotherSimpleCommandBusinessValidator : CommandBusinessValidator<AnotherSimpleCommand>
- {
- public override IEnumerable<ValidationResult> Validate(AnotherSimpleCommand instance)
- {
- throw new NotImplementedException();
- }
- }
- }