PageRenderTime 42ms CodeModel.GetById 19ms RepoModel.GetById 0ms app.codeStats 0ms

/Source/Bifrost/Validation/NullCommandBusinessValidator.cs

#
C# | 43 lines | 17 code | 1 blank | 25 comment | 0 complexity | bd3882ff55f74b49285809500ce47755 MD5 | raw file
Possible License(s): CC-BY-SA-3.0
  1. #region License
  2. //
  3. // Copyright (c) 2008-2012, DoLittle Studios and Komplett ASA
  4. //
  5. // Licensed under the Microsoft Permissive License (Ms-PL), Version 1.1 (the "License")
  6. // With one exception :
  7. // Commercial libraries that is based partly or fully on Bifrost and is sold commercially,
  8. // must obtain a commercial license.
  9. //
  10. // You may not use this file except in compliance with the License.
  11. // You may obtain a copy of the license at
  12. //
  13. // http://bifrost.codeplex.com/license
  14. //
  15. // Unless required by applicable law or agreed to in writing, software
  16. // distributed under the License is distributed on an "AS IS" BASIS,
  17. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  18. // See the License for the specific language governing permissions and
  19. // limitations under the License.
  20. //
  21. #endregion
  22. using System.Collections.Generic;
  23. using System.ComponentModel.DataAnnotations;
  24. using Bifrost.Commands;
  25. namespace Bifrost.Validation
  26. {
  27. /// <summary>
  28. /// Represent a null or non-existant validator.
  29. /// </summary>
  30. /// <remarks>
  31. /// Always returns an empty validation result collection.
  32. /// </remarks>
  33. public class NullCommandBusinessValidator : ICommandBusinessValidator
  34. {
  35. #pragma warning disable 1591 // Xml Comments
  36. public IEnumerable<ValidationResult> Validate(ICommand command)
  37. {
  38. return new ValidationResult[0];
  39. }
  40. #pragma warning restore 1591 // Xml Comments
  41. }
  42. }