Datei: IntegrationTests/PureBusinessClasses/RowVersionClass.ndo.cs

Last Commit (123a4dc)
1 -- File didn't exist --
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
New Commit (16046d5)
1 using System;
2 using NDO;
3
4 namespace TimeStampTestClasses
5 {
6 ····// Don't change this code.
7 ····// This interface implementation exists only for intellisense support.
8 ····// Any code in this file will be replaced by the enhancer.
9 ····public partial class RowVersionClass : IPersistentObject
10 ····{
11 ········#region IPersistentObject Members
12
13 ········public void NDOMarkDirty()
14 ········{
15 ············throw new NotImplementedException();
16 ········}
17
18 ········public ObjectId NDOObjectId
19 ········{
20 ············get
21 ············{
22 ················throw new NotImplementedException();
23 ············}
24 ············set
25 ············{
26 ················throw new NotImplementedException();
27 ············}
28 ········}
29
30 ········public NDOObjectState NDOObjectState
31 ········{
32 ············get
33 ············{
34 ················throw new NotImplementedException();
35 ············}
36 ············set
37 ············{
38 ················throw new NotImplementedException();
39 ············}
40 ········}
41
42 ········public Guid NDOTimeStamp
43 ········{
44 ············get
45 ············{
46 ················throw new NotImplementedException();
47 ············}
48 ············set
49 ············{
50 ················throw new NotImplementedException();
51 ············}
52 ········}
53
54 ········#endregion
55 ····}
56 }
57