using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Song.Extend
{
public class ExamResultsList
{
}
public class ResultObject
{
Song.Entities.ExamResults _result;
///
/// 记录成绩的对象
///
public Song.Entities.ExamResults Result
{
get { return _result; }
}
private bool _isStored = false;
///
/// 标记成绩记录是否已经存储到数据库
///
public bool IsStored
{
get { return _isStored; }
set { _isStored = value; }
}
private bool _isCalculating = false;
///
/// 是否正在计算
///
public bool IsCalculating
{
get { return _isCalculating; }
set { _isCalculating = value; }
}
private bool _isCalculated = false;
///
/// 是否已经完成计算
///
public bool IsCalculated
{
get { return _isCalculated; }
set { _isCalculated = value; }
}
///
/// 构造方法
///
///
public ResultObject(Song.Entities.ExamResults result)
{
_result = result;
}
}
}