Example #1
0
 public Repository(FamilyTreeDbContext dbContext)
 {
     this.dbContext = dbContext;
 }
Example #2
0
        public UnitOfWork(FamilyTreeDbContext context)
        {
            this.context = context;

            this.repositories = new Dictionary <Type, object>();
        }