IClassService.cs 480 B

123456789101112131415161718
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using System.Threading.Tasks;
  5. using TEAMModelOS.Model.Analysis.Models;
  6. using TEAMModelOS.Service.Core.Interfaces;
  7. namespace TEAMModelOS.Service.BaseInfo.Interfaces
  8. {
  9. public interface IClassService : IBusinessService
  10. {
  11. Task<Classes> saveOrUpdate(Classes @params);
  12. Task<Classes> Delete(Classes @params);
  13. Task<List<Classes>> FindList(Dictionary<string, object> enlist);
  14. }
  15. }