码迷,mamicode.com
首页 > Web开发 > 详细

.NET开发设计模式-模板模式

时间:2017-08-24 17:07:24      阅读:193      评论:0      收藏:0      [点我收藏+]

标签:回调   执行   .exe   name   通过   net开发   反射   ace   div   

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Pay
{
    /// <summary>
    /// 付款成功回调
    /// </summary>
    public class PayNotify
    {
        /// <summary>
        /// 执行付款操作
        /// 对外只提供该接口
        /// </summary>
        public void ExecNotify()
        {
            this.ExecOrder();
            this.ExecMoney();
            this.ExecOther();
        }

        /// <summary>
        /// 付款成功之后处理订单操作
        /// </summary>
        private void ExecOrder()
        {
            /*通过反射执行你需要的定制的接口或者方法*/
        }

        /// <summary>
        /// 付款成功之后处理佣金操作
        /// </summary>
        private void ExecMoney()
        {
            /*通过反射执行你需要的定制的接口或者方法*/
        }

        /// <summary>
        /// 付款成功之后处理其它操作
        /// </summary>
        private void ExecOther()
        {
            /*通过反射执行你需要的定制的接口或者方法*/
        }

    }

}

 

.NET开发设计模式-模板模式

标签:回调   执行   .exe   name   通过   net开发   反射   ace   div   

原文地址:http://www.cnblogs.com/wangbin0582/p/7423952.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!