public VehicleRepository(VeggaDbContext context) { this.context = context; }
public MakesController(VeggaDbContext context, IMapper mapper) { this.mapper = mapper; _context = context; }
public FeaturesController(VeggaDbContext context, IMapper mapper) { this.mapper = mapper; this.context = context; }
public UnitOfWork(VeggaDbContext context) { this.context = context; }