sdn-test-simple-car-repository
v1.0.0
Published
Simple vehicle repository
Maintainers
Readme
sdn-test-simple-car-repository
Simple vehicle in memory repository.
Install
npm install sdn-test-simple-car-repositoryUsage
import { InMemorySimpleCarRepository } from 'sdn-test-simple-car-repository';
import { SimpleCar } from 'sdn-test-simple-car';
const repo = new InMemorySimpleCarRepository();
const car = new SimpleCar('BMW', 'M3', 2023);
repo.add(car);
const allCars = repo.getAll();
console.log(`Total cars: ${allCars.length}`);