//-------------------------------------------------------------------- // 此代码由T4模板自动生成 byzhouhang 20210918 // 生成时间 2022-08-22 09:33:24 // 对此文件的更改可能会导致不正确的行为,并且如果重新生成代码,这些更改将会丢失。 //-------------------------------------------------------------------- using IRaCIS.Core.Domain.Models; using Microsoft.AspNetCore.Mvc; using IRaCIS.Core.Application.Interfaces; using IRaCIS.Core.Application.ViewModel; using Panda.DynamicWebApi.Attributes; namespace IRaCIS.Core.Application.Service { /// /// 阅片计算 /// [NonDynamicWebApi] [ ApiExplorerSettings(GroupName = "Reading")] public class ReadingCalculateService : BaseService, IReadingCalculateService { private readonly IRepository _readingTableQuestionAnswerRepository; public ReadingCalculateService(IRepository readingTableQuestionAnswerRepository) { _readingTableQuestionAnswerRepository = readingTableQuestionAnswerRepository; } } }