using System; using System.Collections.Generic; using System.Text; using System.Threading.Tasks; using TEAMModelOS.Model.Analysis.Models; using TEAMModelOS.Service.Core.Interfaces; namespace TEAMModelOS.Service.BaseInfo.Interfaces { public interface IStudentsService : IBusinessService { Task saveOrUpdate(Students @params); Task Delete(Students @params); Task> FindList(Dictionary enlist); } }