using System; namespace TeamHobby.HobbyProjectGenerator.Logging { public class DBLogger : ILogger { public DBLogger() { } public IList GetAllLogs() { throw new NotImplementedException(); } public bool Log(LogEntry log) { throw new NotImplementedException(); } } }