CustomerFamilyRepository.cs 585 B

1234567891011121314151617181920212223
  1. using AutoMapper;
  2. using OASystem.Domain.Dtos.CRM;
  3. using OASystem.Domain.Entities.Customer;
  4. using System;
  5. using System.Collections.Generic;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Threading.Tasks;
  9. namespace OASystem.Infrastructure.Repositories.CRM
  10. {
  11. public class CustomerFamilyRepository : BaseRepository<Crm_VisaCustomerFamily, CustomerFamily>
  12. {
  13. private readonly IMapper _mapper;
  14. public CustomerFamilyRepository(SqlSugarClient sqlSugar, IMapper mapper) :
  15. base(sqlSugar)
  16. {
  17. this._mapper = mapper;
  18. }
  19. }
  20. }