mirror of
https://github.com/Shchoholiev/shopping-assistant-api.git
synced 2025-04-12 01:48:49 +00:00
31 lines
966 B
C#
31 lines
966 B
C#
using System.Collections.ObjectModel;
|
|
using ShoppingAssistantApi.Application.IRepositories;
|
|
using ShoppingAssistantApi.Application.IServices;
|
|
using ShoppingAssistantApi.Domain.Entities;
|
|
|
|
namespace ShoppingAssistantApi.Infrastructure.Services;
|
|
|
|
public class ProductService
|
|
{
|
|
/*private readonly IWishlistsRepository _wishlistsRepository;
|
|
|
|
private readonly IOpenAiService _openAiService;
|
|
private readonly IProductService _productService;
|
|
|
|
public ProductServices(IOpenAiService openAiService, IProductService productService)
|
|
{
|
|
_openAiService = openAiService;
|
|
_productService = productService;
|
|
}
|
|
|
|
public async Task<Collection<string>> StartNewSearchAndReturnWishlist(Message message,
|
|
CancellationToken cancellationToken)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
public async Task<Collection<string>> GetProductFromSearch(Message message, CancellationToken cancellationToken)
|
|
{
|
|
return null;
|
|
}*/
|
|
} |