CompanyRepository.cs 445 B

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