using Microsoft.AspNetCore.Authorization; using Microsoft.AspNetCore.Mvc; using System; using System.Collections.Generic; using System.Text; using System.Threading.Tasks; using TEAMModelOS.API.Models.Core; using TEAMModelOS.SDK.Extension.DataResult.JsonRpcRequest; using TEAMModelOS.SDK.Extension.DataResult.JsonRpcResponse; using TEAMModelOS.SDK.Helper.Common.CollectionHelper; using TEAMModelOS.SDK.Module.AzureCosmosDB.Interfaces; namespace TEAMModelOS.API.Controllers.Syllabus { [Route("api/[controller]")] [ApiController] [Authorize] public class SyllabusController : BaseController { private readonly IAzureCosmosDBRepository azureCosmosDBRepository; public SyllabusController(IAzureCosmosDBRepository _azureCosmosDBRepository) { azureCosmosDBRepository = _azureCosmosDBRepository; } } }