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 { public Task ResetStudentPwd(long userId, string pwd); public Task> GetStudentResults(long ClassesId, int IsBackOutStudent); } }