123456789101112131415 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- using System.Threading.Tasks;
- using TEAMModelOS.Model.Evaluation.Dtos;
- using TEAMModelOS.Model.Evaluation.Dtos.Own;
- using TEAMModelOS.Service.Core.Interfaces;
- namespace TEAMModelOS.Service.Evaluation.Interfaces
- {
- public interface IHtmlAnalyzeService : IBusinessService, IBaseService
- {
- List<ExerciseDto> AnalyzeWordAsync(string htmlString, string Lang);
- }
- }
|