Files
prefab-page-detail/Prefab.Catalog/ModuleClient.cs
2025-10-27 17:39:18 -04:00

18 lines
493 B
C#

using Prefab.Shared.Catalog;
using Prefab.Shared.Catalog.Categories;
using Prefab.Shared.Catalog.Products;
namespace Prefab.Catalog;
public sealed class ModuleClient(
ICategoryClient categoryClient,
IProductClient productClient,
IPriceQuoteClient priceQuoteClient) : IModuleClient
{
public ICategoryClient Category { get; } = categoryClient;
public IProductClient Product { get; } = productClient;
public IPriceQuoteClient PriceQuote { get; } = priceQuoteClient;
}