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