博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
方法对比
阅读量:5765 次
发布时间:2019-06-18

本文共 1554 字,大约阅读时间需要 5 分钟。

//修改前 namespace CleanCSharp.Methods.Dirty{    class Utils    {        public int Process(Customer customer)        {            if (string.IsNullOrWhiteSpace(customer.FirstName)                || string.IsNullOrWhiteSpace(customer.LastName))            {                return -1;            }            else            {                var service = new CustomerService();            }                  if (!service.Save(customer))            {                return -1;            }            else            {                return 1;            }        }    }            }
//修改后 namespace CleanCSharp.Methods.Clean{    class Utils    {        public int Process(Customer customer)        {            const int customerNotSaved = -1;            const int customerSavedSuccessfully = 1;            if (!IsValidCustomer(customer))            {                return customerNotSaved;            }            if (!SaveCustomer(customer))            {            return customerNotSaved;            }            return customerSavedSuccessfully;        }        private bool IsValidCustomer(Customer customer)        {            if (string.IsNullOrWhiteSpace(customer.FirstName)                || string.IsNullOrWhiteSpace(customer.LastName))            {                return false;            }            return true;        }        private bool SaveCustomer(Customer customer)        {            var service = new CustomerService();            var successfullySaved = service.Save(customer);            return successfullySaved;        }    }}

 

转载地址:http://kogkx.baihongyu.com/

你可能感兴趣的文章
递归调用 VS 循环调用
查看>>
使用sstream读取字符串中的数字(c++)
查看>>
树莓派下实现ngrok自启动
查看>>
javascript静态类型检测工具—Flow
查看>>
MachineLearning-Sklearn——环境搭建
查看>>
node学习之路(二)—— Node.js 连接 MongoDB
查看>>
Goroutine是如何工作的?
查看>>
《深入理解java虚拟机》学习笔记系列——垃圾收集器&内存分配策略
查看>>
TriggerMesh开源用于多云环境的Knative Event Sources
查看>>
GitLab联合DigitalOcean为开源社区提供GitLab CI免费托管
查看>>
通过XAML Islands使Windows桌面应用程序现代化
查看>>
区块链现状:从谨慎和批判性思维看待它(第二部分)
查看>>
苹果公司透露Siri新发音引擎的内部原理
查看>>
GCM 3.0采用类似方式向Android、iOS和Chrome发送消息
查看>>
如何成为一家敏捷银行
查看>>
Oracle在JavaOne上宣布Java EE 8将会延期至2017年底
查看>>
Javascript 深入浅出原型
查看>>
简单之极,搭建属于自己的Data Mining环境(Spark版本)
查看>>
Ruby 2.5.0概览
查看>>
如何通过解决精益问题提高敏捷团队生产力
查看>>