16 lines
428 B
C#
16 lines
428 B
C#
using New_College.IRepository.Base;
|
|
using New_College.Model.Models;
|
|
using New_College.Model.ViewModels;
|
|
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace New_College.IRepository
|
|
{
|
|
/// <summary>
|
|
/// ID_MajorRepository
|
|
/// </summary>
|
|
public interface ID_MajorRepository : IBaseRepository<D_Major>
|
|
{
|
|
Task<List<SeachMajorDtoResponse>> SeachMajor(SeachMajorDtoRequest request);
|
|
}
|
|
} |