Ejemplo n.º 1
0
        private void GenuriSolicitate_Click(object sender, EventArgs e)
        {
            var statistics = new StatisticsRepository();
            var ctx        = statistics.GetAllRequestedGenres();

            string content = "Genurile cele mai solicitate \n";

            for (int index = 0; index < ctx.LongCount(); index++)
            {
                content += "\tGen " + (index + 1) + ": " + ctx[index] + "\n";
            }

            MessageBox((IntPtr)0, content, "Message Box", 0);
        }