public OhmsCalculatorService(IResistorBandRepository resistorbandRepository) { _resistorbandRepository = resistorbandRepository; }
public ResistorController(IResistorBandRepository resistorbandRepository) { _resistorbandRepository = resistorbandRepository; _ohmsCalculatorService = new OhmsCalculatorService(_resistorbandRepository); }