32 lines
1.1 KiB
C#
32 lines
1.1 KiB
C#
//--------------------------------------------------------------------
|
|
// 此代码由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
|
|
{
|
|
/// <summary>
|
|
/// 阅片计算
|
|
/// </summary>
|
|
[NonDynamicWebApi]
|
|
[ ApiExplorerSettings(GroupName = "Reading")]
|
|
public class ReadingCalculateService : BaseService, IReadingCalculateService
|
|
{
|
|
|
|
private readonly IRepository<ReadingTableQuestionAnswer> _readingTableQuestionAnswerRepository;
|
|
|
|
public ReadingCalculateService(IRepository<ReadingTableQuestionAnswer> readingTableQuestionAnswerRepository)
|
|
{
|
|
_readingTableQuestionAnswerRepository = readingTableQuestionAnswerRepository;
|
|
}
|
|
|
|
}
|
|
}
|