1234567891011121314151617 |
- using OASystem.Domain.Entities.Customer;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Infrastructure.Repositories.CRM
- {
- public class NewClientDataRepository : BaseRepository<Crm_NewClientData, Crm_NewClientData>
- {
- public NewClientDataRepository(SqlSugarClient sqlSugar) :
- base(sqlSugar)
- { }
- }
- }
|