17 lines
443 B
C#
17 lines
443 B
C#
using New_College.IRepository;
|
|
using New_College.IRepository.UnitOfWork;
|
|
using New_College.Model.Models;
|
|
using New_College.Repository.Base;
|
|
|
|
namespace New_College.Repository
|
|
{
|
|
/// <summary>
|
|
/// T_BatchlineRepository
|
|
/// </summary>
|
|
public class T_BatchlineRepository : BaseRepository<T_Batchline>, IT_BatchlineRepository
|
|
{
|
|
public T_BatchlineRepository(IUnitOfWork unitOfWork) : base(unitOfWork)
|
|
{
|
|
}
|
|
}
|
|
} |