IViewCustomerIncomeRepository.cs 576 B

12345678910111213141516171819202122
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using XYY.Core.Standard.Data.Infrastructure;
  7. using XYY.Model.Standard.Finance;
  8. namespace XYY.Data.Standard.Finance
  9. {
  10. public interface IViewCustomerIncomeRepository : IViewRepository<ViewCustomerIncome>
  11. {
  12. }
  13. public class ViewCustomerIncomeRepository : ViewRepository<ViewCustomerIncome>, IViewCustomerIncomeRepository
  14. {
  15. public ViewCustomerIncomeRepository(IUnitOfWork unitOfWork) : base(unitOfWork)
  16. {
  17. }
  18. }
  19. }