public HypermediaEntrypointHto(HypermediaCustomersRootHto customersRoot, HypermediaCarsRootHto carsRoot)
     : this(new HypermediaObjectReference(customersRoot), new HypermediaObjectReference(carsRoot))
 {
 }
Exemplo n.º 2
0
 public CustomersRootController(HypermediaCustomersRootHto customersRoot, ICustomerRepository customerRepository)
 {
     this.customersRoot      = customersRoot;
     this.customerRepository = customerRepository;
 }