123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using EMIS.ViewModel.TeacherManagement;
- using Bowin.Common.Linq.Entity;
- using EMIS.ViewModel;
- using EMIS.Entities;
- using System.Linq.Expressions;
- namespace EMIS.CommonLogic.TeacherManagement
- {
- public interface IStaffServices
- {
-
-
-
-
-
-
-
-
-
-
-
- IGridResultSet<StaffView> GetStaffViewGrid(ConfiguretView configuretView, Guid? campusID, Guid? collegeID, Guid? departmentID, int? isPhoto, Guid? userID, int pageIndex, int pageSize);
- IGridResultSet<StaffView> GetStaffViewGridWithNoDataRange(ConfiguretView configuretView,
- Guid? campusID, Guid? collegeID, Guid? departmentID, int? isPhoto, Guid? userID, int pageIndex, int pageSize);
- IGridResultSet<StaffView> GetStaffViewGrid(Guid? campusID, Guid? collegeID, string loginID, string name, int pageIndex, int pageSize);
-
-
-
-
-
-
-
-
-
- List<StaffView> GetStaffViewList(ConfiguretView configuretView, Guid? campusID, Guid? collegeID, Guid? departmentID, int? isPhoto);
-
-
-
-
- List<StaffView> GetListStaffView();
-
-
-
-
- List<CF_Staff> GetStaffList();
-
-
-
-
-
- CF_Staff GetStaff(Guid? userID);
-
-
-
-
-
- CF_Staff GetStaff(Expression<Func<CF_Staff, bool>> exp);
-
-
-
-
-
- CF_StaffProfile GetStaffProfile(Guid? userID);
-
-
-
-
-
- StaffView GetStaffView(Guid? userID);
-
-
-
-
-
- StaffView GetStaffView(Expression<Func<CF_Staff, bool>> exp);
-
-
-
-
- List<StaffView> GetListStaffView(Guid? userID);
-
-
-
-
-
-
- void StaffAdd(StaffView staffView, string photoUrl);
-
-
-
-
-
- bool StaffDelete(List<Guid> userIDs);
-
-
-
-
-
-
- string GetVerification(Guid? userID, string Code,Guid? CollegeID, Guid? DepartmentID);
- void DeletePhoto(Guid userID);
-
-
-
-
-
-
-
- void StaffImport(out int OkCount, out List<StaffView> errdataList, out int successCount, string sourcePhysicalPath, string sourceWebPath, out string errorWebPath, out string Errinfo);
-
-
-
-
- void UpdateForSelf(StaffView staffView);
-
-
-
-
-
-
-
- Bowin.Common.Linq.Entity.IGridResultSet<ViewModel.TeacherManagement.StaffView> GetAllStaffView(ViewModel.ConfiguretView configuretView, int pageIndex, int pageSize);
- }
- }
|