Example #1
0
 public CarsApplication(IRecorder recorder, IIdentifierFactory idFactory, ICarStorage storage,
                        IPersonsService personsService)
 {
     recorder.GuardAgainstNull(nameof(recorder));
     idFactory.GuardAgainstNull(nameof(idFactory));
     storage.GuardAgainstNull(nameof(storage));
     personsService.GuardAgainstNull(nameof(personsService));
     this.recorder       = recorder;
     this.idFactory      = idFactory;
     this.storage        = storage;
     this.personsService = personsService;
 }
Example #2
0
 public CarLogic(ICarStorage CarStorage)
 {
     this.CarStorage = CarStorage;
 }
Example #3
0
 public CarsController(ICarStorage carStorage)
 {
     _carStorage = carStorage;
 }