// Infrastructure layer public class ProductRepository : IProductRepository { public IEnumerable<Product> GetProducts() { // Return a list of products from the database } }