comparison Source/Mapping/MapValue.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 namespace BLToolkit.Mapping
2 {
3 public class MapValue
4 {
5 public MapValue(object origValue, params object[] mapValues)
6 {
7 _origValue = origValue;
8 _mapValues = mapValues;
9 }
10
11 private readonly object _origValue;
12 public object OrigValue
13 {
14 get { return _origValue; }
15 }
16
17 private readonly object[] _mapValues;
18 public object[] MapValues
19 {
20 get { return _mapValues; }
21 }
22 }
23 }