PageRenderTime 77ms CodeModel.GetById 22ms RepoModel.GetById 0ms app.codeStats 0ms

/Foundation/ValidationRuleBase.cs

https://github.com/cmath/SimpleLoginManager
C# | 27 lines | 24 code | 3 blank | 0 comment | 0 complexity | f6ad58372621bbaa25f8f585772615af MD5 | raw file
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using System.Windows.Input;
  7. using Login.Helpers;
  8. namespace Login.Foundation
  9. {
  10. public abstract class ValidationRuleBase
  11. {
  12. protected ICommand loginCommand_;
  13. protected IView view_;
  14. public ICommand LoginCommand
  15. {
  16. get
  17. {
  18. return loginCommand_;
  19. }
  20. set { loginCommand_ = value; }
  21. }
  22. public object View { get { return view_; } }
  23. }
  24. }