11 lines
209 B
C#
11 lines
209 B
C#
using Entities.DTO;
|
|
using TechHelper.Services;
|
|
|
|
namespace TechHelper.Server.Services
|
|
{
|
|
public interface IExamService : IBaseService<ExamDto, Guid>
|
|
{
|
|
Task<ApiResponse> GetAllExamPreview(Guid user);
|
|
}
|
|
}
|