public SprintDetailRepository(SprintContext dbContext) : base(dbContext)
 {
 }
Exemple #2
0
 public SprintController(SprintContext context)
 {
     _context = context;
 }
Exemple #3
0
 public Repository(SprintContext dbContext)
 {
     _dbContext = dbContext ?? throw new ArgumentNullException(nameof(dbContext));
 }