设计模式——责任链模式

1.定义基础类

    public abstract class AbstractAuditor
    {
        public string Name { get; set; }

        public abstract void Audit(ApplyContext context);

        private AbstractAuditor _NextAuditor = null;

        public void SetNextAuditor(AbstractAuditor nextAuditor)
        {
            this._NextAuditor = nextAuditor;
        }
         
        protected void ExeNextAuditor(ApplyContext context)
        {
            if (_NextAuditor != null)
            {
                _NextAuditor.Audit(context);
            }
        }

    }

2.各级审核基础该类

 /// <summary>
    /// 职责问题: 
    /// 1.权限以内审批通过
    /// 2.权限以外,自动转交给上级 
    /// </summary>
    public class PM : AbstractAuditor
    {
         
        public override void Audit(ApplyContext context)
        {
            Console.WriteLine($"This is {this.GetType().Name} {this.Name} Audit");
            if (context.Hour <= 8)
            {
                context.AuditResult = true;
                context.AuditRemark = "允许请假!";
            }
            else
            {             
                ExeNextAuditor(context);

            }
        }
    }

3.调用

  AbstractAuditor pm = new PM()

            AbstractAuditor charge = new Charge()
           
            AbstractAuditor chief = new Chief()
           
            AbstractAuditor ceo = new CEO()
         
            pm.SetNextAuditor(ceo);
            charge.SetNextAuditor(chief);
            chief.SetNextAuditor(ceo);
pm.Audit(context);

  

posted @ 2022-08-02 22:53  乌柒柒  阅读(16)  评论(0编辑  收藏  举报