Exemple #1
0
 public BaseRepository(IUnitofWorkContext <TPrimaryKey> unitofWorkContext)
 {
     _unitofWorkContext = unitofWorkContext;
 }
Exemple #2
0
 public BaseRepostitory(IUnitofWorkContext unitofWorkContext) : base(unitofWorkContext)
 {
 }
Exemple #3
0
 public EfRepositoryBase(IUnitofWorkContext unitofWorkContext)
 {
     _unitofWorkContext = unitofWorkContext;
 }