Beispiel #1
0
        private bool TomarValorPropiedad(DateTime fechaBuscar, Horario schedule)
        {
            var horario = schedule;

            if ((bool)schedule.GetType().GetProperty(ConvertirDia(fechaBuscar)).GetValue(horario, null))
            {
                return(true);
            }
            return(false);
        }