12345678910111213141516171819202122 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using XYY.Core.Standard.Data.Infrastructure;
- using XYY.Model.Standard.Finance;
- namespace XYY.Data.Standard.Finance
- {
- public interface IViewCustomerIncomeRepository : IViewRepository<ViewCustomerIncome>
- {
- }
- public class ViewCustomerIncomeRepository : ViewRepository<ViewCustomerIncome>, IViewCustomerIncomeRepository
- {
- public ViewCustomerIncomeRepository(IUnitOfWork unitOfWork) : base(unitOfWork)
- {
- }
- }
- }
|