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