public CategoriesController(GoalTrackerDbContext dbContext) { _dbContext = dbContext; }
public LogController(GoalTrackerDbContext context, ILogRepository <T> repository) { _context = context; _repository = repository; }
public LogRecordController(GoalTrackerDbContext context) { this._context = context; }
public LogRepositoryBase(GoalTrackerDbContext context) { this.context = context; }
public WeightLiftingLogRepository(GoalTrackerDbContext context) : base(context) { this.context = context; }
public WeightLiftingLogController(GoalTrackerDbContext _context) : base(_context, new WeightLiftingLogRepository(_context)) { }