public GoalController(GoalManagementContext _context, IStringLocalizer <GoalController> _localizer)
 {
     repository = new DBRepository <Goal>(_context);
     localizer  = _localizer;
 }
Beispiel #2
0
 public DBRepository(GoalManagementContext _context)
 {
     context = _context;
     dbSet   = _context.Set <T>();
 }