Unit tests working; added logger adapter.
This commit is contained in:
7
src/ApplicationCore/Interfaces/IAppLogger.cs
Normal file
7
src/ApplicationCore/Interfaces/IAppLogger.cs
Normal file
@@ -0,0 +1,7 @@
|
||||
namespace ApplicationCore.Interfaces
|
||||
{
|
||||
public interface IAppLogger<T>
|
||||
{
|
||||
void LogWarning(string message, params object[] args);
|
||||
}
|
||||
}
|
||||
@@ -1,16 +1,7 @@
|
||||
using ApplicationCore.Entities;
|
||||
using Microsoft.eShopWeb.ApplicationCore.Entities;
|
||||
using System.Security.Principal;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace ApplicationCore.Interfaces
|
||||
namespace ApplicationCore.Interfaces
|
||||
{
|
||||
|
||||
public interface IImageService
|
||||
{
|
||||
byte[] GetImageBytesById(int id);
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user