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