If I have an Invoice Line Items table and a Products table, and I have a dropdown in my invoice line items to select a product, I will need a SelectList to populate the dropdown with product names.
Which repository do I put the product SelectList method in, the Invoice Line Items repository or the Products Repository? To me it makes sense to keep it with the Products repository, but if I do that, I will have to instantiate two repository objects (Invoice Line Items and Products) to make it work.