IHtmlAnalyzeService.cs 448 B

123456789101112131415
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using System.Threading.Tasks;
  5. using TEAMModelOS.Model.Evaluation.Dtos;
  6. using TEAMModelOS.Model.Evaluation.Dtos.Own;
  7. using TEAMModelOS.Service.Core.Interfaces;
  8. namespace TEAMModelOS.Service.Evaluation.Interfaces
  9. {
  10. public interface IHtmlAnalyzeService : IBusinessService, IBaseService
  11. {
  12. List<ExerciseDto> AnalyzeWordAsync(string htmlString, string Lang);
  13. }
  14. }