Click here to Skip to main content
15,886,857 members
Articles / Desktop Programming / XAML

YouGrade - Silverlight Multimedia Exam Suite

Rate me:
Please Sign up or sign in to vote.
4.96/5 (62 votes)
5 Jun 2010CPOL16 min read 133.4K   3.1K   133  
A multimedia exam suite built on Silverlight and Youtube
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Xml.Serialization;
using System.ComponentModel;

namespace YouGrade.Silverlight.Model
{
    public class ExamTake : BaseModel
    {
        #region private
        ExamDef examDef;
        #endregion private

        #region constructor
        public ExamTake()
        {
            Status = ExamTakeStatus.Pending;
        }
        #endregion constructor

        #region public

        public ExamDef ExamDef
        {
            get { return examDef; }
            set
            {
                examDef = value;
                OnPropertyChanged("ExamDef");
            }
        }
        public int Id { get; set; }
        public Candidate Candidate { get; set; }
        public DateTime StartDateTime { get; set; }
        public DateTime Duration { get; set; }
        public int Grade { get; set; }
        public ExamTakeStatus Status { get; set; }
        #endregion public
    }

    public enum ExamTakeStatus
    {
        Pending,
        Open,
        Paused,
        Finished,
        Canceled
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Instructor / Trainer Alura Cursos Online
Brazil Brazil

Comments and Discussions