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> AnalyzeWordAsync(DocInfoDto docInfo ,string Lang); Task> UploadWord(IFormFile file); } }