IApiLogService.cs 224 B

12345678910
  1. using System.Threading.Tasks;
  2. using Microsoft.AspNetCore.Http;
  3. namespace GxPress.Service.Interface
  4. {
  5. public interface IApiLogService
  6. {
  7. Task DataSave(HttpContext context, long responseTime,int userId);
  8. }
  9. }