IAppLogger.cs 335 B

123456789101112131415
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace MTWorkHR.Core.Logging
  7. {
  8. public interface IAppLogger<T>
  9. {
  10. void LogInformation(string message, params object[] args );
  11. void LogWarning(string message, params object[] args);
  12. }
  13. }