1234567891011121314151617181920212223 |
- using AutoMapper;
- using OASystem.Domain.Entities.Customer;
- using OASystem.Domain.ViewModels.CRM;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Infrastructure.Repositories.CRM
- {
- public class CustomerCertRepository : BaseRepository<Crm_CustomerCert, CustomerCertView>
- {
- private readonly IMapper _mapper;
- public CustomerCertRepository(SqlSugarClient sqlSugar, IMapper mapper) :
- base(sqlSugar)
- {
- this._mapper = mapper;
- }
- }
- }
|