NewGaoKaoApi/New_College.Repository/BASE/ID_PlanMajorDescRepository.cs

15 lines
398 B
C#

using New_College.IRepository.Base;
using New_College.Model.Models;
using System.Collections.Generic;
using System.Threading.Tasks;
namespace New_College.IRepository
{
/// <summary>
/// ID_PlanMajorDescRepository
/// </summary>
public interface ID_PlanMajorDescRepository : IBaseRepository<D_PlanMajorDesc>
{
Task<bool> Batchupdate(List<D_PlanMajorDesc> majorDescs);
}
}