IHtmlAnalyzeService.cs 382 B

12345678910111213
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using TEAMModelOS.SDK.Context.Configuration;
  5. using TEAMModelOS.Service.Models.Evaluation.Dtos.Own;
  6. namespace TEAMModelOS.Service.Services.Evaluation.Interfaces
  7. {
  8. public interface IHtmlAnalyzeService: IBusinessService
  9. {
  10. List<ExerciseDto> AnalyzeWordAsync(string htmlString, string Lang);
  11. }
  12. }