| 123456789101112131415161718192021222324 | using AutoMapper;using OASystem.Domain.Dtos.CRM;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 CustomerSchoolRepository : BaseRepository<Crm_VisaCustomerSchool, VisaCustomerSchool>    {        private readonly IMapper _mapper;        public CustomerSchoolRepository(SqlSugarClient sqlSugar, IMapper mapper) :            base(sqlSugar)        {            this._mapper = mapper;        }    }}
 |