ILogService.cs 439 B

123456789101112131415161718
  1. using MTWorkHR.Application.Models;
  2. using MTWorkHR.Core.Entities;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace MTWorkHR.Application.Services.Interfaces
  9. {
  10. public interface ILogService<TEntity>
  11. where TEntity : class
  12. {
  13. Task Create(TEntity input);
  14. Task<PagingResultDto<TEntity>> GetAll(PagingInputDto pagingInputDto);
  15. }
  16. }