12 lines
195 B
C#
12 lines
195 B
C#
#region
|
|
|
|
using Web.Core.IRepository.Base;
|
|
using Web.Core.Model.Entity;
|
|
|
|
#endregion
|
|
|
|
namespace Web.Core.IRepository.Myschool;
|
|
|
|
public interface IStudentRepository : IBaseRepository<Student>
|
|
{
|
|
} |