Advertisement
LYSoft

Untitled

May 12th, 2014
194
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.     public abstract class OrtundBaseObject<T>
  2.         where T : OrtundBaseObject<T>
  3.     {
  4.         public Int64 PKey { get; set; }
  5.  
  6.         public OrtundBaseObject()
  7.         {
  8.             PKey = 0;
  9.         }
  10.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement