15 lines
411 B
C#
15 lines
411 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>
|
|
/// IT_EnrollmentBatchRepository
|
|
/// </summary>
|
|
public interface IT_EnrollmentBatchRepository : IBaseRepository<T_EnrollmentBatch>
|
|
{
|
|
Task<int> BatchAdd(List<T_EnrollmentBatch> t_EnrollmentBatches);
|
|
}
|
|
} |