在c#中实现3层架构_c#应用

2008-02-23 05:45:41来源:互联网 阅读 ()

新老客户大回馈,云服务器低至5折

原版英文文章地址:http://www.codeproject.com/csharp/three_tier_architecture.asp
介绍

这篇文章讨论如何在c#中实现3层架构,使用MS Access数据库存储数据。在此,我在3层架构中实现一个小型的可复用的组件保存客户数据。并提供添加,更新,查找客户数据的功能。

背景

首先,我介绍一些3层架构的理论知识。简单说明:什么是3层架构?3层架构的长处是什么?

什么是3层架构?

3层架构是一种“客户端-服务器”架构,在此架构中用户接口,商业逻辑,数据保存连同数据访问被设计为单独的模块。主要有3个层面,第一层(表现层,GUI层),第二层(商业对象,商业逻辑层),第三层(数据访问层)。这些层能够单独研发,单独测试。

为什么要把程式代码分为3层,把用户接口层,商业逻辑层,数据访问层分离有许多的长处。

在快速研发中重用商业逻辑组件,我们已在系统中实现添加,更新,删除,查找客户数据的组件。这个组件已研发并且测试通过,我们能够在其他要保存客户数据的项目中使用这个组件。

系统比较容易迁移,商业逻辑层和数据访问层是分离的,修改数据访问层不会影响到商业逻辑层。系统假如从用SQL Server存储数据迁移到用Oracle存储数据,并无需修改商业逻辑层组件和GUI组件

系统容易修改,假如在商业层有一个小小的修改,我们无需在用户的机器上重装整个系统。我们只需要更新商业逻辑组件就能够了。

应用程式研发人员能够并行,单独的研发单独的层。

代码

这个组件有3层,第一个层或称为GUI层用form实现,叫做FrmGUI。第二层或称为商业逻辑层,叫做BOCustomer,是Bussniess Object Customer的缩写。最后是第三层或称为数据层,叫做DACustomer,是Data Access Customer的缩写。为了方便我把三个层编译到一个项目中。

用户接口层

下面是用户接口成的一段代码,我只选取了调用商业逻辑层的一部分代码。

//This function get the details from the user via GUI

//tier and calls the Add method of business logic layer.

private void cmdAdd_Click(object sender, System.EventArgs e)

{

try

{

cus = new BOCustomer();

cus.cusID=txtID.Text.ToString();

cus.LName = txtLName.Text.ToString();

cus.FName = txtFName.Text.ToString();

cus.Tel= txtTel.Text.ToString();

cus.Address = txtAddress.Text.ToString();

cus.Add();

}

catch(Exception err)

{

MessageBox.Show(err.Message.ToString());

}

}

//This function gets the ID from the user and finds the

//customer details and return the details in the form of

//a dataset via busniss object layer. Then it loops through

//the content of the dataset and fills the controls.

private void cmdFind_Click(object sender, System.EventArgs e)

{

try

{

String cusID = txtID.Text.ToString();

BOCustomer thisCus = new BOCustomer();

DataSet ds = thisCus.Find(cusID);

DataRow row;

row = ds.Tables[0].Rows[0];

//via looping

foreach(DataRow rows in ds.Tables[0].Rows )

{

txtFName.Text = rows["CUS_F_NAME"].ToString();

txtLName.Text = rows["CUS_L_NAME"].ToString();

txtAddress.Text = rows["CUS_ADDRESS"].ToString();

txtTel.Text = rows["CUS_TEL"].ToString();

}

}

catch (Exception err)

{

MessageBox.Show(err.Message.ToString());

}

}

//this function used to update the customer details.

private void cmdUpdate_Click(object sender,

System.EventArgs e)

{

try

{

cus = new BOCustomer();

cus.cusID=txtID.Text.ToString();

cus.LName = txtLName.Text.ToString();

cus.FName = txtFName.Text.ToString();

cus.Tel= txtTel.Text.ToString();

cus.Address = txtAddress.Text.ToString();

cus.Update();

}

catch(Exception err)

{

MessageBox.Show(err.Message.ToString());

}

}

商业逻辑层

下面是商业逻辑层的任何代码,主要包括定义customer对象的属性。但这仅仅是个虚构的customer对象,假如需要能够加入其他的属性。商业逻辑层还包括添加,更新,查找,等方法。

商业逻辑层是个中间层,处于GUI层和数据访问层中间。他有一个指向数据访问层的引用cusData = new DACustomer().而且还引用了System.Data名字空间。商业逻辑层使用DataSet返回数据给GUI层。

using System;

using System.Data;

namespace _3tierarchitecture

{

/// <SUMMARY>

/// Summary description for BOCustomer.

/// </SUMMARY>

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇: 信息反馈-邮件(数据库是xml) _c#应用

下一篇: 关于c#和c 的重载(overload)、隐藏(hide)、覆盖(override