重构试卷相关内容

This commit is contained in:
SpecialX
2025-06-13 19:01:32 +08:00
parent b77ed0b30f
commit bcf351ff25
23 changed files with 980 additions and 84 deletions

View File

@@ -0,0 +1,11 @@
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);
}
}