利用C#开发科技档案管理系统(二)
2009-02-27 08:18:21 来源:WEB开发网3.基础功能模块类(ClsSQL.cs)设计
基础功能模块类主要处理业务逻辑功能。业务层是建成立在数据层和陈述层之上完成的,也就是处理功能窗体与数据库操作的业务功能。下面以“档案室整本图册管理”为例进行功能代码分析。
(1)定义整本图册类(数据结构)
当读取或设置整本图册数据时,都是通过整本图册类ClsScroll实现的。代码如下:
#region 定义-- 整本图登记表-- 数据结构
public class ClsScroll //整本图登记帐-- 类定义:ClsScroll
{
private string Id = "";
private string Scl_1 = "";
private string Scl_2 = "";
private string Scl_3 = "";
//注:此处省略了类似的定义
private string Scl_20 = "";
private string Scl_21 = "";
private string Creator = "";
private string Ctime = "";
private string Mender = "";
private string Mtime = "";
public string MyId
{
get { return Id; }
set { Id = value; }
}
public string MyScl_1
{
get { return Scl_1; }
set { Scl_1 = value; }
}
public string MyScl_2
{
get { return Scl_2; }
set { Scl_2 = value; }
}
//注:此处省略了类似的定义结构
public string MyScl_21
{
get { return Scl_21; }
set { Scl_21 = value; }
}
public string MyCreator
{
get { return Creator; }
set { Creator = value; }
}
public string MyCtime
{
get { return Ctime; }
set { Ctime = value; }
}
public string MyMender
{
get { return Mender; }
set { Mender = value; }
}
public string MyMtime
{
get { return Mtime; }
set { Mtime = value; }
}
}
#endregion
更多精彩
赞助商链接