13 lines
244 B
C#
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
|
|
{
|
|
} |