public ShipperController(IConversation conversation, IMappingEngine mapper, ShipperRepository repository, IValidator validator, IStringConverter<Shipper> stringConverter) { _conversation = conversation; _mapper = mapper; _repository = repository; _validator = validator; _stringConverter = stringConverter; }
public ShipperStringConverter(ShipperRepository repository) { _repository = repository; }