0
|
1 using System;
|
|
2
|
|
3 namespace BLToolkit.DataAccess
|
|
4 {
|
|
5 [AttributeUsage(AttributeTargets.Class, AllowMultiple = true)]
|
|
6 public class ActionSprocNameAttribute : Attribute
|
|
7 {
|
|
8 public ActionSprocNameAttribute(string actionName, string procedureName)
|
|
9 {
|
|
10 _actionName = actionName;
|
|
11 _procedureName = procedureName;
|
|
12 }
|
|
13
|
|
14 private readonly string _actionName;
|
|
15 public string ActionName
|
|
16 {
|
|
17 get { return _actionName; }
|
|
18 }
|
|
19
|
|
20 private readonly string _procedureName;
|
|
21 public string ProcedureName
|
|
22 {
|
|
23 get { return _procedureName; }
|
|
24 }
|
|
25 }
|
|
26 }
|