123456789101112131415161718 |
- 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<Students> saveOrUpdate(Students @params);
- Task<Students> Delete(Students @params);
- Task<List<Students>> FindList(Dictionary<string, object> enlist);
- }
- }
|