Example #1
0
 public static RefV Of(string id, RefV @class = null, RefV database = null) =>
 new RefV(id, @class, database);
Example #2
0
 public RefV(string id, RefV @class = null, RefV database = null)
 {
     Id       = id;
     Class    = @class;
     Database = database;
 }
Example #3
0
 public RefV(string id, RefV collection = null, RefV database = null)
     : base(new RefID(id, collection, database))
 {
 }
Example #4
0
 public static RefV Of(string id, RefV collection = null, RefV database = null) =>
 new RefV(id, collection, database);
Example #5
0
 public RefID(string id, RefV collection, RefV database)
 {
     this.Id         = id;
     this.Collection = collection;
     this.Database   = database;
 }