Advertisement
Guest User

Untitled

a guest
Jun 20th, 2019
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. public async Task<List<DMNCCThueSuatDto>> GetDSThueSuat()
  2. {
  3. using (_unitOfWorkManager.Current.SetTenantId(null))
  4. {
  5. var lstthueSuat = await _dmThueSuatRepository.Query(t => t.Where(i =>
  6. i.IsDeleted == false)).OrderBy("thuesuat_ma asc").ToListAsync();
  7. return ObjectMapper.Map<List<DMNCCThueSuatDto>>(lstthueSuat);
  8. }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement