Пример #1
0
        public UnitOfWork(HumanResourceContext db)
        {
            this.db = db;

            this.People       = new PersonRepository(db);
            this.PhoneNumbers = new PhoneNumberRepository(db);
        }
 public PhoneNumberRepository(HumanResourceContext db)
 {
     this.db = db;
 }
Пример #3
0
 public PersonRepository(HumanResourceContext db)
 {
     this.db = db;
 }