- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using EMIS.Entities;
- namespace EMIS.DataLogic.Repositories
- {
- public class BatchModifyExpandRepository : Repository<Sys_BatchModifyExpand>
- {
- public BatchModifyExpandRepository(UnitOfWork unitOfWork)
- : base(unitOfWork)
- { }
- }
- }
|