資源簡介
城市客運管理系統
城市客運管理系統開發的主要目標是建立城市客運信息的管理平臺,主要包括三大子系統:出租車客運管理系統(業戶信息、車輛信息、出租車駕駛員信息)、公交車客運管理系統(業戶信息、車輛信息、公交車駕駛員管理,公交售票員管理、公交線路管理)、稽查管理系統(公交違章信息、出租違章信息)。 城市客運管理系統主要通過信息化手段實現對城市客運行業的管理。為客運行業運營提供數據基礎,促進科學預測、科學決策。
系統最大特色是使用自己開發XML+XSLT代碼生成器,實現了單擊一個按鈕生成60%~70%的代碼生成工作。
首先通過SQLSERVER數據庫命令得到描述數據庫結構的xml文件,然后xml文件通過自定義的xslt模板,生成三層架構的代碼。

代碼片段和文件信息
using?System;
using?System.Data;
using?AVC.DataEntity;
using?AVC.DataAccess;
namespace?AVC.Business
{
public?class?AfficheBiz
{
public?static?void?AddAffiche(Affiche?objAffiche)
{
AfficheInsert?objAfficheDAL?=?new?AfficheInsert();
objAfficheDAL.ReceiveParameter(objAffiche);
objAfficheDAL.ExecuteNonQuery();
objAffiche.AfficheID?=?objAfficheDAL.AfficheID;
}
public?static?DataTable?GetAllAffiche()
{
AfficheSelectAll?objAfficheDAL?=?new?AfficheSelectAll();
return?objAfficheDAL.ExecuteDataTable();
}
public?static?void?UpdateAffiche(Affiche?objAffiche)
{
AfficheUpdate?objAfficheDAL?=?new?AfficheUpdate();
objAfficheDAL.ReceiveParameter(objAffiche);
objAfficheDAL.ExecuteNonQuery();
}
public?static?void?DeleteAffiche(System.Int32?AfficheID)
{
AfficheDelete?objAfficheDAL?=?new?AfficheDelete();
objAfficheDAL.AfficheID?=?AfficheID;
objAfficheDAL.ExecuteNonQuery();
}
public?static?Affiche?GetAffiche(System.Int32?AfficheID)
{
AfficheSelectByPk?objAfficheDAL?=?new?AfficheSelectByPk();
Affiche?objAffiche?=?new?Affiche();
objAfficheDAL.AfficheID?=?AfficheID;
objAffiche.SetmetaDataTable(objAfficheDAL.ExecuteDataTable());
return?objAffiche;
}
????????public?static?DataTable?GetAfficheSelectAllPaged(int?CurrentPage?out?int?TotalPage?out?int?TotalRecord?int?PageSize?string?SortBy)
????????{
????????????AfficheSelectAllPaged?objAfficheDAL?=?new?AfficheSelectAllPaged();
????????????objAfficheDAL.CurrentPage?=?CurrentPage;
????????????objAfficheDAL.PageSize?=?PageSize;
????????????objAfficheDAL.SortBy?=?SortBy;
????????????DataTable?AfficheTable?=?objAfficheDAL.ExecuteDataTable();
????????????TotalPage?=?objAfficheDAL.TotalPage;
????????????TotalRecord?=?objAfficheDAL.TotalRecord;
????????????return?AfficheTable;
????????}
}
}
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????文件???????1886??2009-04-12?18:07??CityPersonTraffic\AVC.Business\AfficheBiz.cs
?????文件???????3121??2009-04-12?15:10??CityPersonTraffic\AVC.Business\AVC.Business.csproj
?????文件????????168??2009-04-08?20:42??CityPersonTraffic\AVC.Business\AVC.Business.csproj.user
?????文件??????28672??2009-07-02?13:57??CityPersonTraffic\AVC.Business\bin\Debug\AVC.Business.dll
?????文件??????95744??2009-07-02?13:57??CityPersonTraffic\AVC.Business\bin\Debug\AVC.Business.pdb
?????文件?????167936??2009-07-02?13:57??CityPersonTraffic\AVC.Business\bin\Debug\AVC.DataAccess.dll
?????文件????1633792??2009-07-02?13:57??CityPersonTraffic\AVC.Business\bin\Debug\AVC.DataAccess.pdb
?????文件??????45056??2009-07-02?08:22??CityPersonTraffic\AVC.Business\bin\Debug\AVC.DataEntity.dll
?????文件?????235008??2009-07-02?08:22??CityPersonTraffic\AVC.Business\bin\Debug\AVC.DataEntity.pdb
?????文件??????32768??2009-05-04?14:04??CityPersonTraffic\AVC.Business\bin\Debug\ESpace.DALibrary.dll
?????文件??????69120??2009-05-04?14:04??CityPersonTraffic\AVC.Business\bin\Debug\ESpace.DALibrary.pdb
?????文件???????1578??2009-04-12?18:07??CityPersonTraffic\AVC.Business\BusBiz.cs
?????文件???????2274??2009-04-12?18:07??CityPersonTraffic\AVC.Business\BusEmployeeBiz.cs
?????文件???????1926??2009-04-12?18:07??CityPersonTraffic\AVC.Business\BusIllegalBiz.cs
?????文件???????1814??2009-07-02?10:41??CityPersonTraffic\AVC.Business\BusLineBiz.cs
?????文件???????1914??2009-04-12?18:07??CityPersonTraffic\AVC.Business\BusOwnersBiz.cs
?????文件???????1578??2009-04-12?18:07??CityPersonTraffic\AVC.Business\CarBiz.cs
?????文件???????2274??2009-04-12?18:07??CityPersonTraffic\AVC.Business\CarEmployeeBiz.cs
?????文件???????1970??2009-04-12?18:07??CityPersonTraffic\AVC.Business\CarIllegalBiz.cs
?????文件???????1914??2009-04-12?18:07??CityPersonTraffic\AVC.Business\CarOwnersBiz.cs
?????文件???????2628??2009-04-12?18:07??CityPersonTraffic\AVC.Business\ConductorEmployeeBiz.cs
?????文件????????338??2009-04-10?22:08??CityPersonTraffic\AVC.Business\obj\AVC.Business.csproj.FileList.txt
?????文件???????3134??2009-07-03?15:11??CityPersonTraffic\AVC.Business\obj\AVC.Business.csproj.FileListAbsolute.txt
?????文件??????28672??2009-07-02?13:57??CityPersonTraffic\AVC.Business\obj\Debug\AVC.Business.dll
?????文件??????95744??2009-07-02?13:57??CityPersonTraffic\AVC.Business\obj\Debug\AVC.Business.pdb
?????文件??????20480??2009-04-18?16:12??CityPersonTraffic\AVC.Business\obj\Debug\Refactor\AVC.Business.dll
?????文件??????42793??2009-07-02?13:57??CityPersonTraffic\AVC.Business\obj\Debug\ResolveAssemblyReference.cache
?????文件???????2493??2009-04-18?15:04??CityPersonTraffic\AVC.Business\OptionalValueBiz.cs
?????文件???????1326??2009-04-08?20:11??CityPersonTraffic\AVC.Business\Properties\AssemblyInfo.cs
?????文件???????2026??2009-04-12?18:07??CityPersonTraffic\AVC.Business\TrainRecordBiz.cs
............此處省略768個文件信息
- 上一篇:上海某醫院全站B/S網站代碼
- 下一篇:簡單三層購物網站源碼
評論
共有 條評論