protected virtual List <EditorEnunciadoModel> LlenarModels(IDataReader reader)
        {
            List <EditorEnunciadoModel> result = new List <EditorEnunciadoModel>();

            while (reader.Read())
            {
                EditorEnunciadoModel nc = new EditorEnunciadoModel();
                nc.Fill(reader);
                result.Add(nc);
            }
            return(result);
        }