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; }