Quanxue.Zhanghao.Daochu/LearningOfficer.OA.Core/ServicesInterfaces/IUserService.cs

25 lines
851 B
C#

using LearningOfficer.OA.Common.Dtos.Classes;
using LearningOfficer.OA.Common.Dtos.LoginMobile;
using LearningOfficer.OA.Common.Dtos.OA.ManagerData;
using LearningOfficer.OA.Common.Dtos.School;
using LearningOfficer.OA.Common.Dtos.User;
using LearningOfficer.OA.Common.Enums;
using LearningOfficer.OA.Common.Request;
using LearningOfficer.OA.Common.Response;
using LearningOfficer.OA.Core.Entities.UserCenter;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using UserCenter.Model.Common;
namespace LearningOfficer.OA.Core.ServicesInterfaces
{
public interface IUserService : IBaseService<User>
{
public Task<bool> ResetStudentPwd(long userId, string pwd);
public Task<List<StudentResult>> GetStudentResults(long ClassesId, int IsBackOutStudent);
}
}