- using Microsoft.AspNetCore.Http;
- using Newtonsoft.Json.Linq;
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace Bowin.Common.Log
- {
- public interface IDbLog
- {
- bool DbWrite(Exception ex, HttpContext httpContext);
- bool DbWrite(JObject jobject);
- }
- }
|