Exemple #1
0
 public UnitOfWork()
 {
     this._context = new CityTowerDataBase();
 }
Exemple #2
0
 public SexListRepository(CityTowerDataBase context) : base(context)
 {
 }
 public GenericRepository(CityTowerDataBase context)
 {
     _entities = context;
 }
Exemple #4
0
 public UnitOfWork(CityTowerDataBase context)
 {
     _context  = context;
     GoodsList = new GoodsListRepository(_context);
     SexList   = new SexListRepository(_context);
 }