public ClientRepository(StudyProjectContext context)
     : base(context)
 {
 }
Example #2
0
 public ProductRepository(StudyProjectContext context)
     : base(context)
 {
 }
Example #3
0
 public UnitOfWork(StudyProjectContext dbContext)
 {
     _dbContext = dbContext;
 }
Example #4
0
 public GenericRepository(StudyProjectContext context)
 {
     _context = context;
 }
Example #5
0
 public GenericRepository(StudyProjectContext context)
 {
     _context    = context;
     _unitOfWork = new UnitOfWork(context);
 }