view Agendas/trunk/src/Agendas.Blog/Impl/BlogPublicadorConfig.cs @ 185:2d02adb79322

Se agrega fecha de termino de un Evento y se incluye la hora a la fecha de inicio. Se modifica la propiedad Fecha del Evento, renombrandola FechaInicio. En el ModelView se agrega propiedades Duración y Hora del Evento cuando es Modificado, Nuevo y Agendado. Las fechas ingresadas son creadas en sistema UTC Queda pendiente Agregar duración a Google Calendar.
author alabra
date Tue, 09 Aug 2011 01:04:27 -0400
parents 1d820f17fc75
children
line wrap: on
line source

using System;

namespace Agendas.Blog.Impl
{
  public class BlogPublicadorConfig
  {
    public BlogPublicadorConfig(string postWriterServiceUrl, string blogName, string blogWriterMasterKey)
    {
      if (string.IsNullOrEmpty(postWriterServiceUrl)) throw new ArgumentNullException("postWriterServiceUrl");
      if (string.IsNullOrEmpty(blogName)) throw new ArgumentNullException("blogName");
      if (string.IsNullOrEmpty(blogWriterMasterKey)) throw new ArgumentNullException("blogWriterMasterKey");

      _postWriterServiceUrl = postWriterServiceUrl;
      _blogName = blogName;
      _blogWriterMasterKey = blogWriterMasterKey;
    }

    private readonly string _postWriterServiceUrl;
    private readonly string _blogName;
    private readonly string _blogWriterMasterKey;

    public string BlogWriterMasterKey
    {
      get { return _blogWriterMasterKey; }
    }

    public string BlogName
    {
      get { return _blogName; }
    }

    public string PostWriterServiceUrl
    {
      get { return _postWriterServiceUrl; }
    }
  }
}