/source/app/NOS.Registration/IAutoRegistrationView.cs

http://github.com/agross/netopenspace · C# · 61 lines · 50 code · 11 blank · 0 comment · 0 complexity · be1a13a55db4cde12f516e5aa2bc81fc MD5 · raw file

  1. using System;
  2. using System.Web.UI.WebControls;
  3. namespace NOS.Registration
  4. {
  5. public interface IAutoRegistrationView
  6. {
  7. string UserName
  8. {
  9. get;
  10. }
  11. string Xing
  12. {
  13. get;
  14. }
  15. string Twitter
  16. {
  17. get;
  18. }
  19. bool AutoRegisterUser
  20. {
  21. get;
  22. }
  23. string Name
  24. {
  25. get;
  26. }
  27. string Blog
  28. {
  29. get;
  30. }
  31. string Email
  32. {
  33. get;
  34. }
  35. string Picture
  36. {
  37. get;
  38. }
  39. decimal Sponsoring
  40. {
  41. get;
  42. }
  43. string InvoiceAddress
  44. {
  45. get;
  46. }
  47. event EventHandler<EventArgs> UserCreated;
  48. event EventHandler<ServerValidateEventArgs> ValidateInvoiceAddress;
  49. }
  50. }