ExternalAPI_NET8/Web.Core.Repository/Myschool/StudentRepository.cs
2026-05-21 17:23:36 +08:00

13 lines
244 B
C#

#region
using Web.Core.IRepository.Myschool;
using Web.Core.Model.Entity;
using Web.Core.Repository.Base;
#endregion
namespace Web.Core.Repository.Myschool;
public class StudentRepository : BaseRepository<Student>, IStudentRepository
{
}