IHtmlAnalyzeService.cs 412 B

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