public PersonController( IPersonService personService, IValidationWrapper wrapper) { _PersonService = personService; _ValidationWrapper = wrapper; }
public ProductController( IProductService service, IValidationWrapper wrapper) { _Service = service; _ValidationWrapper = wrapper; }
public NegotiationController( IProductService productService, INegotiationService negotiationService, IValidationWrapper wrapper) { _ProductService = productService; _NegotiationService = negotiationService; _ValidationWrapper = wrapper; }