6 lines
183 B
C#
6 lines
183 B
C#
namespace JSMR.Infrastructure.Data.Repositories.VoiceWorks;
|
|
|
|
public interface IVoiceWorkFullTextSearch
|
|
{
|
|
IQueryable<int> MatchingIds(AppDbContext context, string searchText);
|
|
} |