view Agendas/trunk/src/Agendas.Web/Models/EventoModel.cs @ 217:c4c60e034103 deploy 2011-09-06

sugerencia de recordatorios
author nelopauselli
date Tue, 06 Sep 2011 18:09:43 -0300
parents 6944c54f834f
children f23ee59ef1bd
line wrap: on
line source

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Web.Mvc;
using AltNetHispano.Agendas.Twitter;
using DataAnnotationsExtensions;

namespace AltNetHispano.Agendas.Web.Models
{
    public class EventoIndexModel
	{
		public IEnumerable<EventoDto> ProximosEventos { get; set; }
	}

	public class EventoNewModel
	{
		[Required]
		public int TipoEvento { get; set; }

		[Required]
		public string Titulo { get; set; }

		[Required]
        public Guid Ponente { get; set; }

		[Required]
		public DateTime Fecha { get; set; }

        [Required]
	    public TimeSpan Hora { get; set; }

        [Required]
        public TimeSpan Duracion { get; set; }

	    [Url]
		public string UrlInvitacion { get; set; }
	}

	public class EventoEditModel
	{
		[HiddenInput(DisplayValue = false)]
		public string Id { get; set; }

		[Required]
		public string Titulo { get; set; }

		[Required]
        public Guid Ponente { get; set; }

		[Required]
		public DateTime? Fecha { get; set; }

        [Required]
        public TimeSpan? Hora { get; set; }

        [Required]
        public TimeSpan? Duracion { get; set; }

		[Url]
		public string UrlInvitacion { get; set; }
	}

	public class EventoAgendarModel
	{
		[HiddenInput(DisplayValue = false)]
		public string Id { get; set; }

		[Required]
		public string Titulo { get; set; }

		[Required]
        public Guid Ponente { get; set; }

		[Required]
		public DateTime? Fecha { get; set; }

        [Required]
        public TimeSpan? Hora { get; set; }

        [Required]
        public TimeSpan? Duracion { get; set; }

		[Url]
		public string UrlInvitacion { get; set; }
	}

	public class EventoPublicarModel
	{
		[HiddenInput(DisplayValue = false)]
		public string Id { get; set; }

		[Required]
		[HiddenInput]
		public string Titulo { get; set; }

		[Required]
		[Range(1, short.MaxValue)]
		public short NroOrden { get; set; }

		[Required]
		[Url]
		public string UrlWiki { get; set; }

		[Required]
		public TimeSpan DuracionReal { get; set; }
	}

	public class EventoConfirmModel
	{
		[HiddenInput(DisplayValue = false)]
		public string Id { get; set; }

		[HiddenInput]
		public string Titulo { get; set; }

		[HiddenInput]
		[UIHint("Recordatorios")]
		public Recordatorios Recordatorios { get; set; }
	}

	public class EventoDto
	{
		public string Id { get; set; }
		public string Titulo { get; set; }
		public string Estado { get; set; }
		public string Fecha { get; set; }
        public string Duracion { get; set; }

	    public bool PuedeAgendar { get; set; }
		public bool PuedeModificar { get; set; }
		public bool PuedeConfirmar { get; set; }
		public bool PuedePublicar { get; set; }
        public bool PuedeCancelar { get; set; }
        public bool PuedeDescartar { get; set; }
        public bool PuedeReAgendar { get; set; }
        public bool PuedeReProponer { get; set; }
	}
}