示例#1
0
 public LocalRepository(RepoCollections repoCollections, int id, string repoName) :
     base(repoCollections, id, repoName)
 {
     list = new List <T>();
 }
示例#2
0
 public DbRepository(RepoCollections repoCollections, int id, string repoName) :
     base(repoCollections, id, repoName)
 {
 }
示例#3
0
 protected Repository(RepoCollections repoCollections, int id, string repoName)
 {
     owner      = repoCollections;
     name       = repoName;
     identifier = id;
 }