12345678910111213141516171819 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- using System.Threading.Tasks;
- using Microsoft.AspNetCore.Http;
- using TEAMModelOS.Model.Core.Models;
- using TEAMModelOS.Model.Evaluation.Dtos;
- using TEAMModelOS.Model.Evaluation.Dtos.Own;
- using TEAMModelOS.Service.Core.Interfaces;
- namespace TEAMModelOS.Service.Evaluation.Interfaces
- {
- public interface IImportExerciseService : IBusinessService, IBaseService
- {
- Task<List<ExerciseDto>> AnalyzeWordAsync(DocInfoDto docInfo ,string Lang);
-
- Task<Dictionary<string, object>> UploadWord(IFormFile file);
- }
- }
|