12345678910111213141516171819 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using EMIS.ViewModel.TeacherManagement;
- namespace EMIS.CommonLogic.SystemServices
- {
- public interface IUserInfoChangeServices
- {
- /// <summary>
- /// 获取教室详细信息
- /// </summary>
- /// <param name="userID"></param>
- /// <returns></returns>
- StaffView GetStaffView(Guid? userID);
- }
- }
|