Init
This commit is contained in:
17
Prefab.Catalog/ModuleClient.cs
Normal file
17
Prefab.Catalog/ModuleClient.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
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;
|
||||
}
|
||||
Reference in New Issue
Block a user