NewClientDataRepository.cs 426 B

1234567891011121314151617
  1. using OASystem.Domain.Entities.Customer;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace OASystem.Infrastructure.Repositories.CRM
  8. {
  9. public class NewClientDataRepository : BaseRepository<Crm_NewClientData, Crm_NewClientData>
  10. {
  11. public NewClientDataRepository(SqlSugarClient sqlSugar) :
  12. base(sqlSugar)
  13. { }
  14. }
  15. }