12 lines
287 B
C#
12 lines
287 B
C#
using Entities.Contracts;
|
|
using TechHelper.Services;
|
|
|
|
namespace TechHelper.Server.Services
|
|
{
|
|
public interface IQuestionService : IBaseService<Question, Guid>
|
|
{
|
|
Task<ApiResponse> FindByTitle(string title);
|
|
Task<ApiResponse> CheckTitlesExistence(IEnumerable<string> titles);
|
|
}
|
|
}
|