comparison Source/DataAccess/NoMapAttribute.cs @ 0:f990fcb411a9

Копия текущей версии из github
author cin
date Thu, 27 Mar 2014 21:46:09 +0400
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:f990fcb411a9
1 using System;
2
3 namespace BLToolkit.DataAccess
4 {
5 [AttributeUsage(AttributeTargets.Parameter)]
6 public class NoMapAttribute : Attribute
7 {
8 public NoMapAttribute()
9 {
10 _noMap = true;
11 }
12
13 public NoMapAttribute(bool noMap)
14 {
15 _noMap = noMap;
16 }
17
18 private bool _noMap;
19 public bool NoMap
20 {
21 get { return _noMap; }
22 set { _noMap = value; }
23 }
24 }
25 }
26