15 lines
482 B
C#
15 lines
482 B
C#
using Tiku.Application.Content;
|
|
using Tiku.Application.QuestionBanks;
|
|
using Tiku.Application.Security;
|
|
using Tiku.Infrastructure.Persistence;
|
|
|
|
namespace Tiku.Infrastructure.Content;
|
|
|
|
public sealed partial class ContentManagementService(
|
|
TikuDbContext dbContext,
|
|
IQuestionReferenceService questionReferenceService,
|
|
ICurrentAccessContext currentAccessContext) : IContentManagementService
|
|
{
|
|
private const int DefaultLimit = 100;
|
|
private const int MaxLimit = 1000;
|
|
} |