18 lines
493 B
C#
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;
|
|
}
|