首页 > 其他 > 详细

特性与元数据

时间:2015-10-28 14:10:01      阅读:174      评论:0      收藏:0      [点我收藏+]
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;
            }
        }
    }
}

特性与元数据

原文:http://www.cnblogs.com/sulong/p/4917100.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!