123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Linq.Expressions;
- using System.Text;
- using Bowin.Common.Linq.Entity;
- using EMIS.Entities;
- using EMIS.ViewModel;
- using EMIS.ViewModel.UniversityManage.TeacherManage;
- using EMIS.ViewModel.SystemManage.UserManage;
- namespace EMIS.CommonLogic.UniversityManage.TeacherManage
- {
- public interface IStaffServices
- {
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- IGridResultSet<StaffView> GetStaffViewGrid(ConfiguretView configuretView, Guid? campusID, Guid? collegeID, Guid? departmentID, int? isPhoto, int? teacherTypeID,
- int? incumbencyState, int? titleID, int? isDualTeacher, int pageIndex, int pageSize);
-
-
-
-
-
-
-
-
-
-
-
-
-
- IList<StaffView> GetStaffViewList(ConfiguretView configuretView, Guid? campusID, Guid? collegeID, Guid? departmentID, int? isPhoto, int? teacherTypeID,
- int? incumbencyState, int? titleID, int? isDualTeacher);
-
-
-
-
-
-
-
-
-
-
-
- IGridResultSet<StaffView> GetStaffViewGrid(ConfiguretView configuretView, Guid? campusID, Guid? collegeID, string loginID, string name, int pageIndex, int pageSize);
-
-
-
-
-
-
-
-
-
- IList<StaffView> GetStaffViewList(ConfiguretView configuretView, Guid? campusID, Guid? collegeID, string loginID, string name);
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- IGridResultSet<StaffView> GetStaffViewGridWithNoDataRange(ConfiguretView configuretView, Guid? campusID, Guid? collegeID, Guid? departmentID, int? isPhoto,
- int? teacherTypeID, int? incumbencyState, int? titleID, int? isDualTeacher, int pageIndex, int pageSize);
-
-
-
-
-
-
-
-
-
-
-
-
-
- IList<StaffView> GetStaffViewListWithNoDataRange(ConfiguretView configuretView, Guid? campusID, Guid? collegeID, Guid? departmentID, int? isPhoto,
- int? teacherTypeID, int? incumbencyState, int? titleID, int? isDualTeacher);
-
-
-
-
-
-
-
- IGridResultSet<StaffView> GetAllStaffView(ConfiguretView configuretView, int pageIndex, int pageSize);
-
-
-
-
-
- IList<StaffView> GetAllStaffList(ConfiguretView configuretView);
-
-
-
-
- List<StaffView> GetListStaffView();
-
-
-
-
- List<CF_Staff> GetStaffList();
-
-
-
-
-
- CF_Staff GetStaff(Guid? userID);
-
-
-
-
-
- CF_StaffProfile GetStaffProfile(Guid? userID);
-
-
-
-
-
- CF_Staff GetStaff(Expression<Func<CF_Staff, bool>> exp);
-
-
-
-
-
- StaffView GetStaffView(Guid? userID);
-
-
-
-
-
- StaffView GetStaffView(Expression<Func<CF_Staff, bool>> exp);
-
-
-
-
-
- List<StaffView> GetListStaffView(Guid? userID);
-
-
-
-
-
- void StaffEdit(StaffView staffView, string photoUrl);
-
-
-
-
-
- bool StaffDelete(List<Guid?> userIDs);
-
-
-
-
-
-
- bool GetVerification(Guid? collegeID, Guid? departmentID);
-
-
-
-
- void DeletePhoto(Guid? userID);
-
-
-
-
-
- bool PicDelete(List<Guid?> userIDs);
-
-
-
-
-
-
-
-
-
-
-
- IGridResultSet<UserView> GetRoleListViewGrid(ConfiguretView configuretView, Guid? userID, Guid? roleID, int? dataRange, int? roleStatus, int pageIndex, int pageSize);
-
-
-
-
-
-
-
-
-
- IList<UserView> GetRoleListViewList(ConfiguretView configuretView, Guid? userID, Guid? roleID, int? dataRange, int? roleStatus);
-
-
-
-
-
- void StaffPicImport(IList<string> photoPaths, string importPicType);
-
-
-
-
-
-
-
-
-
- void StaffImport(Dictionary<string, string> cellheader, out int? inCount, out int? upCount, out List<StaffView> errdataList, out int? errCount, string sourcePhysicalPath);
- }
- }
|