예제 #1
0
        /// <summary>
        ///
        /// </summary>
        /// <param name="_lstEventosFecha"></param>
        /// <param name="_item"></param>
        private void AgregarRegistro(List <EventoFecha> _lstEventosFecha, string _item)
        {
            string[]    aCampos   = ObtenerCampos(_item);
            EventoFecha entEvento = new EventoFecha();

            ObtenerRegistro(entEvento, aCampos);
            _lstEventosFecha.Add(entEvento);
        }
예제 #2
0
 /// <summary>
 ///
 /// </summary>
 /// <param name="_entEvento"></param>
 /// <param name="_aCampos"></param>
 private void ObtenerRegistro(EventoFecha _entEvento, string[] _aCampos)
 {
     _entEvento.cEvento       = _aCampos[0];
     _entEvento.dtFechaEvento = DateTime.Parse(_aCampos[1]);
 }