annotate Source/DataAccess/ActionNameAttribute.cs @ 4:f757da6161a1
!bug 100 + 2h fixed gregression
author |
cin |
date |
Sun, 24 Aug 2014 17:57:42 +0400 |
parents |
f990fcb411a9 |
children |
|
rev |
line source |
0
|
1 using System;
|
|
2
|
|
3 namespace BLToolkit.DataAccess
|
|
4 {
|
|
5 [AttributeUsage(AttributeTargets.Method)]
|
|
6 public class ActionNameAttribute : Attribute
|
|
7 {
|
|
8 public ActionNameAttribute(string name)
|
|
9 {
|
|
10 _name = name;
|
|
11 }
|
|
12
|
|
13 private readonly string _name;
|
|
14 public string Name
|
|
15 {
|
|
16 get { return _name; }
|
|
17 }
|
|
18 }
|
|
19 }
|