25 lines
459 B
C#
25 lines
459 B
C#
using System;
|
|
using TeamHobby.HobbyProjectGenerator.ServiceLayer.Contracts;
|
|
|
|
namespace TeamHobby.HobbyProjectGenerator.ServiceLayer
|
|
{
|
|
public class FileLogger : ILogger
|
|
{
|
|
public FileLogger()
|
|
{
|
|
}
|
|
|
|
public IList<string> GetAllLogs()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public bool Log(LogEntry log)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
}
|
|
|
|
}
|