Files
TechHelper/TechHelper.Server/Services/IExamService.cs
2025-06-13 19:01:32 +08:00

13 lines
299 B
C#

using Entities.Contracts;
using Entities.DTO;
using TechHelper.Services;
namespace TechHelper.Server.Services
{
public interface IExamService : IBaseService<ExamDto, Guid>
{
Task<ApiResponse> GetAllExamPreview(Guid user);
QuestionGroupDto MapAssignmentGroupToDto(AssignmentGroup ag);
}
}