diff Agendas/trunk/src/Agendas.Domain/Identification.cs @ 96:1eb5a0e531bf

Funcionamiento con cuenta interna y con cuenta de twitter, falta unificar usuarios Estructura de aspnetdb dentro de base de datos de altnet hispano, se debe ejecutar: C:\Windows\Microsoft.NET\Framework\v2.0.50727\aspnet_regsql.exe para crear dicha estructura, de todas formas el objetivo seria tener una tabla de usuario y password interna, no parecería ser necesaria toda la estructura de aspnetdb
author Nelo@Kenia.neluz.int
date Sat, 04 Jun 2011 19:37:02 -0300
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Agendas/trunk/src/Agendas.Domain/Identification.cs	Sat Jun 04 19:37:02 2011 -0300
@@ -0,0 +1,17 @@
+namespace AltNetHispano.Agendas.Domain
+{
+	public class Identification
+	{
+		public const string Map = " !@";
+
+		public Identification(string name)
+		{
+			char c = name[0];
+			IdentityProvider = (IdentityProviderEnum)Map.IndexOf(c);
+			LogonName = name.Substring(1);
+		}
+
+		public string LogonName { get; set; }
+		public IdentityProviderEnum IdentityProvider { get; set; }
+	}
+}
\ No newline at end of file