Mercurial > altnet-hispano
view Agendas/trunk/src/Agendas.Web/Models/EventoModelHelper.cs @ 266:dba5d41bc7bf
BUG: Guardar persona con twitter ya existente genera error.
author | juanjose.montesdeocaarbos |
---|---|
date | Tue, 25 Oct 2011 23:22:10 -0300 |
parents | a5ff4de4a1d3 |
children |
line wrap: on
line source
using System.Collections.Generic; using AltNetHispano.Agendas.Domain; namespace AltNetHispano.Agendas.Web.Models { public static class EventoModelHelper { public static IEnumerable<TipoEventoModel> GetTiposEventos() { var tipos = new List<TipoEventoModel> { new TipoEventoModel {TipoEvento = (int) TipoEvento.Van, TipoEventoStr = "VAN"}, new TipoEventoModel {TipoEvento = (int) TipoEvento.Cafe, TipoEventoStr = "ALT.NET Cafe"}, new TipoEventoModel {TipoEvento = (int) TipoEvento.GrupoEstudio, TipoEventoStr = "Grupo Estudio"} }; return tipos; } public class TipoEventoModel { public int TipoEvento { get; set; } public string TipoEventoStr { get; set; } } } }