2023-03-27 15:52:28 +03:00
|
|
|
|
using RhSolutions.Models;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Threading.Tasks;
|
2023-03-27 13:55:58 +03:00
|
|
|
|
|
|
|
|
|
namespace RhSolutions.Services
|
|
|
|
|
{
|
|
|
|
|
public interface IDatabaseClient
|
|
|
|
|
{
|
2023-03-27 15:52:28 +03:00
|
|
|
|
public Task<IEnumerable<Product>> GetProducts(string query);
|
2023-03-27 13:55:58 +03:00
|
|
|
|
}
|
|
|
|
|
}
|