12345678910111213 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- using TEAMModelOS.SDK.Context.Configuration;
- using TEAMModelOS.Service.Models.Evaluation.Dtos.Own;
- namespace TEAMModelOS.Service.Services.Evaluation.Interfaces
- {
- public interface IHtmlAnalyzeService: IBusinessService
- {
- List<ExerciseDto> AnalyzeWordAsync(string htmlString, string Lang);
- }
- }
|