CustomerCertRepository.cs 583 B

1234567891011121314151617181920212223
  1. using AutoMapper;
  2. using OASystem.Domain.Entities.Customer;
  3. using OASystem.Domain.ViewModels.CRM;
  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 CustomerCertRepository : BaseRepository<Crm_CustomerCert, CustomerCertView>
  12. {
  13. private readonly IMapper _mapper;
  14. public CustomerCertRepository(SqlSugarClient sqlSugar, IMapper mapper) :
  15. base(sqlSugar)
  16. {
  17. this._mapper = mapper;
  18. }
  19. }
  20. }