using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace MTWorkHR.Core.Logging
{
    public interface IAppLogger<T> 
    {
        void LogInformation(string message, params object[] args );
        void LogWarning(string message, params object[] args);
    }
}