广告位联系
返回顶部
分享到

C#实现简单订单管理程序

C#教程 来源:互联网 作者:秩名 发布时间:2022-05-27 23:48:38 人浏览
摘要

订单管理的控制台程序,能够实现添加订单、删除订单、修改订单、查询订单、序列化与反序列化订单功能。 主要的类有Order(订单)、OrderItem(订单明细项),OrderService(订单服务)

订单管理的控制台程序,能够实现添加订单、删除订单、修改订单、查询订单、序列化与反序列化订单功能。

主要的类有Order(订单)、OrderItem(订单明细项),OrderService(订单服务),订单数据可以保存在OrderService中一个List中。在Program里面可以调用OrderService的方法完成各种订单操作。

要求:

(1)使用LINQ语言实现各种查询功能,查询结果按照订单总金额排序返回。
(2)在订单删除、修改失败时,能够产生异常并显示给客户错误信息。
(3)作业的订单和订单明细类需要重写Equals方法,确保添加的订单不重复,每个订单的订单明细不重 复。
(4)订单、订单明细、客户、货物等类添加ToString方法,用来显示订单信息。
(5)OrderService提供排序方法对保存的订单进行排序。默认按照订单号排序,也可以使用Lambda表达式进行自定义排序。
(6)在OrderService中添加一个Export方法,可以将所有的订单序列化为XML文件;添加一个Import方法可以从XML文件中载入订单。

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

68

69

70

71

72

73

74

75

76

77

78

79

80

81

82

83

84

85

86

87

88

89

90

91

92

93

94

95

96

97

98

99

100

101

102

103

104

105

106

107

108

109

110

111

112

113

114

115

116

117

118

119

120

121

122

123

124

125

126

127

128

129

130

131

132

133

134

135

136

137

138

139

140

141

142

143

144

145

146

147

148

149

150

151

152

153

154

155

156

157

158

159

160

161

162

163

164

165

166

167

168

169

170

171

172

173

174

175

176

177

178

179

180

181

182

183

184

185

186

187

188

189

190

191

192

193

194

195

196

197

198

199

200

201

202

203

204

205

206

207

208

209

210

211

212

213

214

215

216

217

218

219

220

221

222

223

224

225

226

227

228

229

230

231

232

233

234

235

236

237

238

239

240

241

242

243

244

245

246

247

248

249

250

251

252

253

254

255

256

257

258

259

260

261

262

263

264

265

266

267

268

269

270

271

272

273

274

275

276

277

278

279

280

281

282

283

284

285

286

287

288

289

290

291

292

293

294

295

296

297

298

299

300

301

302

303

304

305

306

307

308

309

310

311

312

313

314

315

316

317

318

319

320

321

322

323

324

325

326

327

328

329

330

331

332

333

334

335

336

337

338

339

340

341

342

343

344

345

346

347

348

349

350

351

352

353

354

355

356

357

358

359

360

361

362

363

364

365

366

367

368

369

370

371

372

373

374

375

376

377

378

379

380

381

382

using System;

using System.Collections.Generic;

using System.IO;

using System.Linq;

using System.Xml.Serialization;

 

namespace exercise20200320

{

    class Program

    {

        static void Main(string[] args)

        {

            AllOrder a = new AllOrder();

            bool judge_ = true;

            while (judge_)

            {

                Console.WriteLine("输入1增加订单,输入2删除订单,输入3查询订单,输入4显示所有订单,输入5根据订单号为订单排序,输入6序列化订单,输入7反序列化订单,输入8退出");

                string choose1 = Console.ReadLine();

                switch (choose1)

                {

                    case "1": a.addOrder(); break;

                    case "2": a.removeOrder(); break;

                    case "3": Console.WriteLine("输入1根据订单金额查询订单,输入2根据客户名查询订单"); int i = Convert.ToInt32(Console.ReadLine()); a.searchOrder(i); break;

                    case "4": a.ShowOrder(); break;

                    case "5": a.order.Sort(); break;

                    case "6": a.export(); break;

                    case "7": a.import(); break;

                    case "8":judge_ = false;break;

                    default: Console.WriteLine("输入错误"); break;

                }

            }

        }

    }

    [Serializable]

    public class AllOrder:IOrderService    //所有订单

    {

        public List<Order> order = new List<Order>();

         

        public AllOrder()

        {

             

        }

 

        public void export()

        {

            XmlSerializer a = new XmlSerializer(typeof(List<Order>));

            using (FileStream b = new FileStream("order.xml", FileMode.Create))

            {

                a.Serialize(b, this.order);

            }

            Console.WriteLine("序列化完成");

        }

 

        public void import()

        {

            try

            {

                XmlSerializer a = new XmlSerializer(typeof(List<Order>));

                using (FileStream b = new FileStream("order.xml", FileMode.Open))

                {

                    List<Order> c = (List<Order>)a.Deserialize(b);

                    Console.WriteLine("反序列化结果:");

                    foreach (Order d in c)

                    {

                        Console.WriteLine("订单号 客户 日期 总金额");

                        Console.WriteLine("----------------------------");

                        Console.WriteLine("{0} {1} {2} {3}", d.Id, d.Customer, d.Date, d.Money);

                        d.showOrderItem();

                    }

                }

            }

            catch

            {

                Console.WriteLine("序列化系列操作错误");

            }

        }

        public void ShowOrder()

        {

             

            foreach (Order a in this.order) {

                Console.WriteLine("订单号 客户 日期 总金额");

                Console.WriteLine("----------------------------");

                Console.WriteLine("{0} {1} {2} {3}", a.Id,a.Customer,a.Date,a.Money);

                a.showOrderItem();

            }

        }

        public void addOrder()          //增加订单

        {

            try

            {

                Console.WriteLine("请输入订单编号:");

                int id = Convert.ToInt32(Console.ReadLine());

                Console.WriteLine("请输入客户名称:");

                string customer = Console.ReadLine();

                Console.WriteLine("请输入时间:");

                string date = Console.ReadLine();

                Order a = new Order(id, customer, date);

                Console.WriteLine("输入订单项:");

                bool judge = true;

                bool same = false;

                foreach(Order m in this.order)

                {

                    if (m.Equals(a)) same = true;

                }

                if (same) Console.WriteLine("订单号重复");

                else

                {

                    while (judge && !same)

                    {

                        Console.WriteLine("请输入物品名称:");

                        string name = Console.ReadLine();

                        Console.WriteLine("请输入购买数量:");

                        int number = Convert.ToInt32(Console.ReadLine());

                        Console.WriteLine("请输入单价:");

                        double price = Convert.ToDouble(Console.ReadLine());

                        a.addOrderItem(name, number, price);

                        Console.WriteLine("是否继续添加订单项:");

                        string x = Console.ReadLine();

                        if (x == "否") judge = false;

                        else if(x=="是") continue;

                        else if(x!="否"&&x!="是"){

                            Exception e = new Exception();

                            throw e;

                        }

                    }

                    order.Add(a);

                    a.getAllPrice();

                    Console.WriteLine("建立成功");

                    Console.WriteLine("-------------------------");

                }

            }

            catch

            {

                Console.WriteLine("输入错误");

            }

 

        }

        public void removeOrder()           //删除订单

        {

            try

            {

                Console.WriteLine("输入订单号删除订单或相应明细:");

                int id = Convert.ToInt32(Console.ReadLine());

                int index = 0;

                foreach (Order a in this.order)

                {

                    if (a.Id == id) index = this.order.IndexOf(a);

                }

                Console.WriteLine("输入1删除订单,输入2继续删除订单明细");

                int choose = Convert.ToInt32(Console.ReadLine());

                switch (choose)

                {

                    case 1: this.order.RemoveAt(index); Console.WriteLine("删除成功"); Console.WriteLine("-----------------"); break;

                    case 2: this.order[index].showOrderItem(); this.order[index].RemoveOrderItem(); break;

                    default: Console.WriteLine("输入错误"); break;

                }

            }

            catch

            {

                Console.WriteLine("输入错误");

            }

             

        }

 

        public void searchOrder(int i)  //查询订单

        {

            try

            {

                switch (i)

                {

                    case 1:

                        int minNum, maxNum;

                        Console.WriteLine("输入要查询的最小金额:");

                        minNum = Convert.ToInt32(Console.ReadLine());

                        Console.WriteLine("输入要查询的最大金额:");

                        maxNum = Convert.ToInt32(Console.ReadLine());

 

 

                        var query1 = from s1 in order

                                     where maxNum > s1.Money

                                     orderby s1.Money

                                     select s1;

                        var query3 = from s3 in query1

                                     where s3.Money > minNum

                                     orderby s3.Money

                                     select s3;

 

                        List<Order> a1 = query3.ToList();

 

                        foreach (Order b1 in a1)

                        {

                            Console.WriteLine("订单号 客户 日期 总金额");

                            Console.WriteLine("----------------------------");

                            Console.WriteLine("{0} {1} {2} {3}", b1.Id, b1.Customer, b1.Date, b1.Money);

                            b1.showOrderItem();

                        }

                        break;

                    case 2:

 

                        Console.WriteLine("输入客户名称:");

                        string name1 = Console.ReadLine();

 

                        var query2 = from s2 in order

                                     where s2.Customer == name1

                                     orderby s2.Money

                                     select s2;

                        List<Order> a2 = query2.ToList();

 

                        foreach (Order b2 in a2)

                        {

                            Console.WriteLine("订单号 客户 日期 总金额");

                            Console.WriteLine("----------------------------");

                            Console.WriteLine("{0} {1} {2} {3}", b2.Id, b2.Customer, b2.Date, b2.Money);

                            b2.showOrderItem();

                        }

                        break;

                    default: Console.WriteLine("输入错误"); break;

 

                }

            }

            catch

            {

                Console.WriteLine("输入错误");

            }

        }

 

         

    }

    [Serializable]

    public class Order:IComparable  //单个订单项

    {

        public int Id { get; set; }

        public string Customer { get; set; }

        public double Money { get; set; }

        public string Date { get; set; }

 

        public List<OrderItem> orderItem = new List<OrderItem>();

 

        public Order()//无参构造函数

        {

            this.Id = 0;

            this.Customer = string.Empty;

            this.Money = 0;

            this.Date = string.Empty;

             

        }

        public int CompareTo(object obj)

        {

            Order a = obj as Order;

            return this.Id.CompareTo(a.Id);

        }

        public override bool Equals(object obj)

        {

            Order a = obj as Order;

            return this.Id == a.Id;

        }

 

        public override int GetHashCode()

        {

            return Convert.ToInt32(Id);

        }

        public Order(int id,string customer,string date)

        {

            this.Id = id;

            this.Customer = customer;

            this.Date = date;

        }

        public void getAllPrice()  //计算总价

        {

            double i=0;

            foreach(OrderItem a in this.orderItem)

            {

                i = i + a.getPrice();

            }

            this.Money = i;

             

             

        }

 

        public void addOrderItem(string name,int number,double price)   //添加订单项

        { 

            OrderItem a = new OrderItem(name, number, price);

            this.orderItem.Add(a);

        }

        public void RemoveOrderItem() //删除订单项

        {

            try

            {

                Console.WriteLine("请输入订单明细序号删除相应订单明细:");

                int a = Convert.ToInt32(Console.ReadLine());

                this.orderItem.RemoveAt(a);

                Console.WriteLine("删除成功");

                Console.WriteLine("-------------------------");

            }

            catch

            {

                Console.WriteLine("输入序号错误");

            }

        }

 

        public void showOrderItem()  //展示订单项

        {

            Console.WriteLine("序号 名称 数量 单价");

            foreach (OrderItem a in this.orderItem)

            {

                 

                Console.WriteLine("-----------------------");

                Console.WriteLine("{0} {1} {2} {3}",this.orderItem.IndexOf(a),a.Name,a.Number,a.Price);

            }

        }

 

    }

    [Serializable]

    public class OrderItem               //订单明细项

    {

        private string name;

        public string Name

        {

            get

            {

                return name;

            }

            set

            {

                name = value;

            }

        }

        private int number;

        public int Number

        {

            get

            {

                return number;

            }

            set

            {

                if (value >= 0) number = value;

                else Console.WriteLine("数量不应该小于0");

            }

        }

        private double price;

        public double Price

        {

            get

            {

                return price;

            }

            set

            {

                price = value;

            }

        }

 

        public OrderItem()//无参构造函数

        {

            this.Name = string.Empty;

            this.Number = 0;

            this.Price = 0;

        }

 

        public OrderItem(string name, int number, double price)

        {

            this.name = name;

            this.number = number;

            this.price = price;

        }

        public double getPrice()

        {

            return this.number * this.price;

        }

 

    }

    public interface IOrderService        //包含所有订单功能的接口

    {

        void addOrder();

        void removeOrder();   

        void searchOrder(int i);

        void export();

        void import();

 

    }

}


版权声明 : 本文内容来源于互联网或用户自行发布贡献,该文观点仅代表原作者本人。本站仅提供信息存储空间服务和不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权, 违法违规的内容, 请发送邮件至2530232025#qq.cn(#换@)举报,一经查实,本站将立刻删除。
原文链接 : https://blog.csdn.net/weixin_45299287/article/details/107637967
相关文章
  • WPF实现窗体亚克力效果的代码

    WPF实现窗体亚克力效果的代码
    WPF 窗体设置亚克力效果 框架使用大于等于.NET40。 Visual Studio 2022。 项目使用MIT开源许可协议。 WindowAcrylicBlur设置亚克力颜色。 Opacity设置透
  • C#非托管泄漏中HEAP_ENTRY的Size对不上解析

    C#非托管泄漏中HEAP_ENTRY的Size对不上解析
    一:背景 1. 讲故事 前段时间有位朋友在分析他的非托管泄漏时,发现NT堆的_HEAP_ENTRY的 Size 和!heap命令中的 Size 对不上,来咨询是怎么回事?
  • C#中ArrayList 类的使用介绍
    一:ArrayList 类简单说明 动态数组ArrayList类在System.Collecions的命名空间下,所以使用时要加入System.Collecions命名空间,而且ArrayList提供添加,
  • C#使用BinaryFormatter类、ISerializable接口、XmlSeriali

    C#使用BinaryFormatter类、ISerializable接口、XmlSeriali
    序列化是将对象转换成字节流的过程,反序列化是把字节流转换成对象的过程。对象一旦被序列化,就可以把对象状态保存到硬盘的某个位
  • C#序列化与反序列化集合对象并进行版本控制
    当涉及到跨进程甚至是跨域传输数据的时候,我们需要把对象序列化和反序列化。 首先可以使用Serializable特性。 1 2 3 4 5 6 7 8 9 10 11 12 13 14
  • C#事件中关于sender的用法解读

    C#事件中关于sender的用法解读
    C#事件sender的小用法 开WPF新坑了,看了WPF的炫酷界面,再看看winForm实在是有些惨不忍睹(逃)。后面会开始写一些短的学习笔记。 一、什么
  • 在C#程序中注入恶意DLL的方法

    在C#程序中注入恶意DLL的方法
    一、背景 前段时间在训练营上课的时候就有朋友提到一个问题,为什么 Windbg 附加到 C# 程序后,程序就处于中断状态了?它到底是如何实现
  • 基于C#实现一个简单的FTP操作工具
    实现功能 实现使用FTP上传、下载、重命名、刷新、删除功能 开发环境 开发工具: Visual Studio 2013 .NET Framework版本:4.5 实现代码 1 2 3 4 5 6 7
  • C#仿QQ实现简单的截图功能

    C#仿QQ实现简单的截图功能
    接上一篇写的截取电脑屏幕,我们在原来的基础上加一个选择区域的功能,实现自定义选择截图。 个人比较懒,上一篇的代码就不重新设计
  • C#实现线性查找算法的介绍
    线性查找,肯定是以线性的方式,在集合或数组中查找某个元素。 通过代码来理解线性查找 什么叫线性?还是在代码中体会吧。 首先需要一
  • 本站所有内容来源于互联网或用户自行发布,本站仅提供信息存储空间服务,不拥有版权,不承担法律责任。如有侵犯您的权益,请您联系站长处理!
  • Copyright © 2017-2022 F11.CN All Rights Reserved. F11站长开发者网 版权所有 | 苏ICP备2022031554号-1 | 51LA统计