using New_College.IRepository.Base;
using New_College.Model.Models;
using System.Collections.Generic;
using System.Threading.Tasks;
namespace New_College.IRepository
{
///
/// IT_EnrollmentBatchRepository
///
public interface IT_EnrollmentBatchRepository : IBaseRepository
{
Task BatchAdd(List t_EnrollmentBatches);
}
}