1234567891011121314151617181920 |
- using SMP.Model.Finance;
- using XYY.Core.Standard.Data.Infrastructure;
- namespace SMP.Data.Finance
- {
- public interface IFinance_ServiceBillResolveApplyRepository : IBaseRepository<Finance_ServiceBillResolveApply>
- {
-
- }
- public class Finance_ServiceBillResolveApplyRepository : BaseRepository<Finance_ServiceBillResolveApply>, IFinance_ServiceBillResolveApplyRepository
- {
- public Finance_ServiceBillResolveApplyRepository(IUnitOfWork unitOfWork) : base(unitOfWork)
- {
- }
-
- }
- }
|