ILogSend.cs 166 B

12345678910
  1. using System;
  2. namespace Core.Utility
  3. {
  4. public interface ILogSend
  5. {
  6. void SendError(string massge);
  7. void SendException(Exception e);
  8. }
  9. }