博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
特性与元数据
阅读量:6846 次
发布时间:2019-06-26

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

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace chap2_1_7
{
    class Program
    {
        static void Main(string[] args)
        {
            HR hr = new HR();
            Employee employee = new Employee();
            hr.ToSalary(employee);
            Console.ReadKey();
        }
    }
    public enum TransferSourceType//转账类型
    { 
        Salary,
        Reimburse,
        Loan
    }
    [AttributeUsage(AttributeTargets.Parameter)]
    public class TransferSource : Attribute//转账元数据
    {
        public TransferSourceType TransferType { get; set; }
    }
    public partial class Employee//员工实体
    {
        public void PaySalary([TransferSource(TransferType = TransferSourceType.Salary)] int toNumber)
        { 
            //直接汇入员工银行卡
            Console.WriteLine("收到工资:"+toNumber);
        }
        public void PayReimburse([TransferSource(TransferType = TransferSourceType.Salary)] int toNumber)
        {
            //直接汇入员工银行卡
            Console.WriteLine("收到工资:" + toNumber);
        }
        public void PayLoan([TransferSource(TransferType = TransferSourceType.Salary)] int toNumber)
        {
            //直接汇入员工银行卡
            Console.WriteLine("收到工资:" + toNumber);
        }
    }
    public class HR
    {
        public void ToSalary(Employee employee)
        {
            var transferSource = typeof(Employee).GetMethod("PaySalary").GetParameters()[0].GetCustomAttributes(false)[0] as TransferSource;
            switch (transferSource.TransferType)
            {
                case TransferSourceType.Salary:
                    {
                        employee.PaySalary(6000);//发工资
                    }break;
                case TransferSourceType.Reimburse:
                    {
                        employee.PayReimburse(500);//报销                        
                    }break;
                case TransferSourceType.Loan:
                    {
                        employee.PayLoan(20000);//借款
                    }break;
            }
        }
    }
}

转载于:https://www.cnblogs.com/sulong/p/4917100.html

你可能感兴趣的文章
Swoole 实例三(Timer定时器)
查看>>
Windows下安装Redis
查看>>
Hyper-V Server 2008 R2安装、配置
查看>>
install_haproxy
查看>>
在PHP里通过工厂模式提高效率
查看>>
http://www.qingtin.com/
查看>>
MYSQL-字符校对规则探究
查看>>
堡垒机teleport之旅
查看>>
面向对象思想所遵循的五大设计原则
查看>>
警惕公司的破窗效应!
查看>>
oracle注册监听器,改变端口
查看>>
Java Serializable,序列化,串行化
查看>>
12306曝光sql注入漏洞,我试着发布解决方案
查看>>
策略模式
查看>>
CentOS 6.1 安装Nodejs及npm
查看>>
Vmware vSphere(Esxi)常见问题汇总
查看>>
HTTPClient模拟登陆21CN
查看>>
(转) Twisted :第六部分 抽象地利用Twisted
查看>>
php+mysql+html页面编码解决方案
查看>>
moinmoin 1.9.7 成功移机记录
查看>>