IAuditLogsAppService.cs 574 B

12345678910111213141516
  1. using System.Collections.Generic;
  2. using System.Threading.Tasks;
  3. using System.Web.Mvc;
  4. using WePlatform.BaseSystem.AuditLog.Dto;
  5. using IwbZero.AppServiceBase;
  6. namespace WePlatform.BaseSystem.AuditLog
  7. {
  8. public interface IAuditLogsAppService : IIwbZeroAsyncCrudAppService<SysLogDto, long, IwbPagedRequestDto>
  9. {
  10. List<SelectListItem> GetLogServiceSelectLists();
  11. string GetLogServiceSelectListStrs();
  12. List<SelectListItem> GetLogMethodSelectLists(QueryMethodName input);
  13. string GetLogMethodSelectListStrs(QueryMethodName input);
  14. }
  15. }