11 lines
246 B
C#
11 lines
246 B
C#
using RhSolutions.Models;
|
|
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace RhSolutions.Services
|
|
{
|
|
public interface IDatabaseClient
|
|
{
|
|
public Task<IEnumerable<Product>> GetProducts(string query);
|
|
}
|
|
} |