//rent car public void Rent(string carNumber) { using (CarsRepository carsRepository = new CarsRepository()) { carsRepository.RentCar(carNumber); } }