在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → C#汽车销售系统.rar

C#汽车销售系统.rar

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:3.64M
  • 下载次数:3
  • 浏览次数:81
  • 发布时间:2021-11-23
  • 实例类别:一般编程问题
  • 发 布 人:js2021
  • 文件格式:.rar
  • 所需积分:2
 

实例介绍

【实例简介】
豪车销售系统源码 技术特点: 本系统采用了3层结构,实现了汽车销售的入库,出库 等管理功能。 功能介绍: 基础资料:供商管理 客户管理 商品管理 员工管理 其他数据 进货管理:采购计划 添加采购 进货入库 销售管理:销售浏览 销售出货 库存管理:库存盘点 查询统计:进过入库统计 销售出库统计 系统关于:关于 注意事项 关闭系统:关闭系统 注意: 开发环境为Visual Studio 2010,数据库为SQL Server 2008,数据库
【实例截图】
【核心代码】
4744300845204108560.rar
└── RichCarSale
├── DB_51aspx
│   ├── CarSaleSyetem_log.LDF
│   └── CarSaleSyetem.mdf
├── DotNetSpeech.dll
├── RichCarSale.BLL
│   ├── adminTableManager.cs
│   ├── bin
│   │   └── Debug
│   │   ├── RichCarSale.BLL.dll
│   │   ├── RichCarSale.BLL.pdb
│   │   ├── RichCarSale.DAL.dll
│   │   ├── RichCarSale.DAL.pdb
│   │   ├── RichCarSale.Model.dll
│   │   └── RichCarSale.Model.pdb
│   ├── CarTypeManager.cs
│   ├── CustomerManager.cs
│   ├── DepartmentManager.cs
│   ├── factoryProductManager.cs
│   ├── GoodsTableManager.cs
│   ├── obj
│   │   └── Debug
│   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   ├── ResolveAssemblyReference.cache
│   │   ├── RichCarSale.BLL.csproj.FileListAbsolute.txt
│   │   ├── RichCarSale.BLL.csprojResolveAssemblyReference.cache
│   │   ├── RichCarSale.BLL.dll
│   │   └── RichCarSale.BLL.pdb
│   ├── OrderCarManager.cs
│   ├── OrderCarTableManager.cs
│   ├── Properties
│   │   └── AssemblyInfo.cs
│   ├── RichCarSale.BLL.csproj
│   ├── StoreageInfoManager.cs
│   ├── StoreageTableManager.cs
│   └── WorkerManager.cs
├── RichCarSale.Common
│   ├── bin
│   │   └── Debug
│   │   ├── RichCarSale.Common.dll
│   │   └── RichCarSale.Common.pdb
│   ├── Class1.cs
│   ├── obj
│   │   └── Debug
│   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   ├── RichCarSale.Common.csproj.FileListAbsolute.txt
│   │   ├── RichCarSale.Common.dll
│   │   └── RichCarSale.Common.pdb
│   ├── Properties
│   │   └── AssemblyInfo.cs
│   └── RichCarSale.Common.csproj
├── RichCarSale.DAL
│   ├── AdminTableServer.cs
│   ├── bin
│   │   └── Debug
│   │   ├── RichCarSale.DAL.dll
│   │   ├── RichCarSale.DAL.pdb
│   │   ├── RichCarSale.Model.dll
│   │   └── RichCarSale.Model.pdb
│   ├── CarTypeServer.cs
│   ├── CustomerServer.cs
│   ├── DepartmentServer.cs
│   ├── factoryProduct Server.cs
│   ├── GoodsTableServer.cs
│   ├── obj
│   │   └── Debug
│   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   ├── ResolveAssemblyReference.cache
│   │   ├── RichCarSale.DAL.csproj.FileListAbsolute.txt
│   │   ├── RichCarSale.DAL.csprojResolveAssemblyReference.cache
│   │   ├── RichCarSale.DAL.dll
│   │   └── RichCarSale.DAL.pdb
│   ├── OrderCarServer.cs
│   ├── OrderCarTableServer.cs
│   ├── Properties
│   │   └── AssemblyInfo.cs
│   ├── RichCarSale.DAL.csproj
│   ├── SQLHelper.cs
│   ├── StoreageInforService.cs
│   ├── StoreageTableServer.cs
│   └── WorkerServer.cs
├── RichCarSale.Model
│   ├── AdminTable.cs
│   ├── alarm.cs
│   ├── bin
│   │   └── Debug
│   │   ├── RichCarSale.Model.dll
│   │   └── RichCarSale.Model.pdb
│   ├── CarType.cs
│   ├── Customer.cs
│   ├── Department.cs
│   ├── factoryProduct.cs
│   ├── GoodsTable.cs
│   ├── inMoney.cs
│   ├── obj
│   │   └── Debug
│   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   ├── RichCarSale.Model.csproj.FileListAbsolute.txt
│   │   ├── RichCarSale.Model.dll
│   │   └── RichCarSale.Model.pdb
│   ├── OrderCar.cs
│   ├── OrderCarTable.cs
│   ├── payTable.cs
│   ├── Properties
│   │   └── AssemblyInfo.cs
│   ├── ReturnTable.cs
│   ├── RichCarSale.Model.csproj
│   ├── storeageInfor.cs
│   ├── StoreageTable.cs
│   └── Worker.cs
├── RichCarSale.sln
├── RichCarSale.suo
├── RichCarSale.UI
│   ├── AniWindow.cs
│   ├── App.config
│   ├── bin
│   │   └── Debug
│   │   ├── db
│   │   │   └── CarSystems.sql
│   │   ├── DotNetSpeech.dll
│   │   ├── IrisSkin2.dll
│   │   ├── pic
│   │   │   ├── 10.bmp
│   │   │   ├── 10.jpg
│   │   │   ├── 111.ico
│   │   │   ├── 11.bmp
│   │   │   ├── 12.jpg
│   │   │   ├── 13.jpg
│   │   │   ├── 1.bmp
│   │   │   ├── 1.jpg
│   │   │   ├── 2.bmp
│   │   │   ├── 2.jpg
│   │   │   ├── 3.bmp
│   │   │   ├── 3.jpg
│   │   │   ├── 4.jpg
│   │   │   ├── 5.bmp
│   │   │   ├── 5.jpg
│   │   │   ├── 6.bmp
│   │   │   ├── 6.jpg
│   │   │   ├── 7.bmp
│   │   │   ├── 7.jpg
│   │   │   ├── 8.bmp
│   │   │   ├── 8.jpg
│   │   │   ├── 9.bmp
│   │   │   ├── 9.jpg
│   │   │   ├── asitemat.jpg
│   │   │   ├── baoma.png
│   │   │   ├── baoshijie.png
│   │   │   ├── carsale.mdb
│   │   │   ├── hanma.jpg
│   │   │   ├── lan9.jpg
│   │   │   ├── lanbojini.jpg
│   │   │   ├── NO.png
│   │   │   ├── OK.png
│   │   │   └── qiche9.jpg
│   │   ├── RichCarSale.BLL.dll
│   │   ├── RichCarSale.BLL.pdb
│   │   ├── RichCarSale.Common.dll
│   │   ├── RichCarSale.Common.pdb
│   │   ├── RichCarSale.DAL.dll
│   │   ├── RichCarSale.DAL.pdb
│   │   ├── RichCarSale.Model.dll
│   │   ├── RichCarSale.Model.pdb
│   │   ├── RichCarSale.UI.exe
│   │   ├── RichCarSale.UI.exe.config
│   │   ├── RichCarSale.UI.pdb
│   │   ├── RichCarSale.UI.vshost.exe
│   │   ├── RichCarSale.UI.vshost.exe.config
│   │   ├── RichCarSale.UI.vshost.exe.manifest
│   │   └── Skin
│   │   └── SteelBlack.ssk
│   ├── CarSell.UI.csproj
│   ├── Form1.cs
│   ├── Form1.Designer.cs
│   ├── Form1.resx
│   ├── FormMain.cs
│   ├── FormMain.Designer.cs
│   ├── FormMain.resx
│   ├── frmMain.resx
│   ├── obj
│   │   └── x86
│   │   └── Debug
│   │   ├── DesignTimeResolveAssemblyReferences.cache
│   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   ├── GenerateResource.read.1.tlog
│   │   ├── GenerateResource.write.1.tlog
│   │   ├── ResolveAssemblyReference.cache
│   │   ├── RichCarSale.UI.csproj.FileListAbsolute.txt
│   │   ├── RichCarSale.UI.csproj.GenerateResource.Cache
│   │   ├── RichCarSale.UI.csprojResolveAssemblyReference.cache
│   │   ├── RichCarSale.UI.exe
│   │   ├── RichCarSale.UI.FormMain.resources
│   │   ├── RichCarSale.UI.LoginUp.resources
│   │   ├── RichCarSale.UI.OnloadPage.resources
│   │   ├── RichCarSale.UI.pdb
│   │   ├── RichCarSale.UI.Properties.Resources.resources
│   │   ├── RichCarSale.UI.供商信息一览.resources
│   │   ├── RichCarSale.UI.供商信息录入.resources
│   │   ├── RichCarSale.UI.供商信息维护.resources
│   │   ├── RichCarSale.UI.关于.resources
│   │   ├── RichCarSale.UI.员工信息录入.resources
│   │   ├── RichCarSale.UI.员工信息查询.resources
│   │   ├── RichCarSale.UI.员工信息维护.resources
│   │   ├── RichCarSale.UI.商品信息一览.resources
│   │   ├── RichCarSale.UI.商品信息录入.resources
│   │   ├── RichCarSale.UI.商品信息维护.resources
│   │   ├── RichCarSale.UI.商品修改.resources
│   │   ├── RichCarSale.UI.商品类型设置.resources
│   │   ├── RichCarSale.UI.客户信息一览.resources
│   │   ├── RichCarSale.UI.客户信息录入.resources
│   │   ├── RichCarSale.UI.客户信息维护.resources
│   │   ├── RichCarSale.UI.库存盘点.resources
│   │   ├── RichCarSale.UI.注意事项.resources
│   │   ├── RichCarSale.UI.添加采购.resources
│   │   ├── RichCarSale.UI.进货入库.resources
│   │   ├── RichCarSale.UI.进货入库统计.resources
│   │   ├── RichCarSale.UI.采购计划.resources
│   │   ├── RichCarSale.UI.销售出库统计.resources
│   │   ├── RichCarSale.UI.销售出货.resources
│   │   ├── RichCarSale.UI.销售浏览.resources
│   │   └── TempPE
│   │   └── Properties.Resources.Designer.cs.dll
│   ├── OnloadPage.cs
│   ├── OnloadPage.Designer.cs
│   ├── OnloadPage.resx
│   ├── Program.cs
│   ├── Properties
│   │   ├── AssemblyInfo.cs
│   │   ├── Resources.Designer.cs
│   │   ├── Resources.resx
│   │   ├── Settings.Designer.cs
│   │   └── Settings.settings
│   ├── RichCarSale.UI.csproj
│   ├── RichCarSale.UI.csproj.user
│   ├── Skin
│   │   └── SteelBlack.ssk
│   ├── 供商信息一览.cs
│   ├── 供商信息一览.Designer.cs
│   ├── 供商信息一览.resx
│   ├── 供商信息录入.cs
│   ├── 供商信息录入.Designer.cs
│   ├── 供商信息录入.resx
│   ├── 供商信息维护.cs
│   ├── 供商信息维护.Designer.cs
│   ├── 供商信息维护.resx
│   ├── 关于.cs
│   ├── 关于.Designer.cs
│   ├── 关于.resx
│   ├── 员工信息录入.cs
│   ├── 员工信息录入.Designer.cs
│   ├── 员工信息录入.resx
│   ├── 员工信息查询.cs
│   ├── 员工信息查询.Designer.cs
│   ├── 员工信息查询.resx
│   ├── 员工信息维护.cs
│   ├── 员工信息维护.Designer.cs
│   ├── 员工信息维护.resx
│   ├── 商品信息一览.cs
│   ├── 商品信息一览.Designer.cs
│   ├── 商品信息一览.resx
│   ├── 商品信息录入.cs
│   ├── 商品信息录入.Designer.cs
│   ├── 商品信息录入.resx
│   ├── 商品信息维护.cs
│   ├── 商品信息维护.Designer.cs
│   ├── 商品信息维护.resx
│   ├── 商品修改.cs
│   ├── 商品修改.Designer.cs
│   ├── 商品修改.resx
│   ├── 商品类型设置.cs
│   ├── 商品类型设置.Designer.cs
│   ├── 商品类型设置.resx
│   ├── 客户信息一览.cs
│   ├── 客户信息一览.Designer.cs
│   ├── 客户信息一览.resx
│   ├── 客户信息录入.cs
│   ├── 客户信息录入.Designer.cs
│   ├── 客户信息录入.resx
│   ├── 客户信息维护.cs
│   ├── 客户信息维护.Designer.cs
│   ├── 客户信息维护.resx
│   ├── 库存盘点.cs
│   ├── 库存盘点.Designer.cs
│   ├── 库存盘点.resx
│   ├── 注意事项.cs
│   ├── 注意事项.Designer.cs
│   ├── 注意事项.resx
│   ├── 添加采购.cs
│   ├── 添加采购.Designer.cs
│   ├── 添加采购.resx
│   ├── 进货入库.cs
│   ├── 进货入库.Designer.cs
│   ├── 进货入库.resx
│   ├── 进货入库统计.cs
│   ├── 进货入库统计.Designer.cs
│   ├── 进货入库统计.resx
│   ├── 采购计划.cs
│   ├── 采购计划.Designer.cs
│   ├── 采购计划.resx
│   ├── 销售出库统计.cs
│   ├── 销售出库统计.Designer.cs
│   ├── 销售出库统计.resx
│   ├── 销售出货.cs
│   ├── 销售出货.Designer.cs
│   ├── 销售出货.resx
│   ├── 销售浏览.cs
│   ├── 销售浏览.Designer.cs
│   └── 销售浏览.resx
├── 必读.txt
└── 文档
├── 1.doc
└── 2.doc

39 directories, 273 files

标签:

实例下载地址

C#汽车销售系统.rar

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警