/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
- using System;
- using System.Web.UI.WebControls;
-
- namespace NOS.Registration
- {
- public interface IAutoRegistrationView
- {
- string UserName
- {
- get;
- }
-
- string Xing
- {
- get;
- }
-
- string Twitter
- {
- get;
- }
-
- bool AutoRegisterUser
- {
- get;
- }
-
- string Name
- {
- get;
- }
-
- string Blog
- {
- get;
- }
-
- string Email
- {
- get;
- }
-
- string Picture
- {
- get;
- }
-
- decimal Sponsoring
- {
- get;
- }
-
- string InvoiceAddress
- {
- get;
- }
-
- event EventHandler<EventArgs> UserCreated;
- event EventHandler<ServerValidateEventArgs> ValidateInvoiceAddress;
- }
- }