Server naming fixes and cleanup
Server is now completely cleaned up and without warnings
This commit is contained in:
@ -1,8 +1,8 @@
|
||||
namespace Oqtane.Infrastructure
|
||||
namespace Oqtane.Infrastructure.Interfaces
|
||||
{
|
||||
public interface IInstallationManager
|
||||
{
|
||||
void InstallPackages(string Folders, bool Restart);
|
||||
void InstallPackages(string folders, bool restart);
|
||||
void UpgradeFramework();
|
||||
void RestartApplication();
|
||||
}
|
||||
|
@ -1,15 +1,15 @@
|
||||
using Oqtane.Models;
|
||||
using System;
|
||||
using Oqtane.Models;
|
||||
using Oqtane.Shared;
|
||||
using System;
|
||||
|
||||
namespace Oqtane.Infrastructure
|
||||
namespace Oqtane.Infrastructure.Interfaces
|
||||
{
|
||||
public interface ILogManager
|
||||
{
|
||||
void Log(LogLevel Level, object Class, LogFunction Function, string Message, params object[] Args);
|
||||
void Log(LogLevel Level, object Class, LogFunction Function, Exception Exception, string Message, params object[] Args);
|
||||
void Log(int SiteId, LogLevel Level, object Class, LogFunction Function, string Message, params object[] Args);
|
||||
void Log(int SiteId, LogLevel Level, object Class, LogFunction Function, Exception Exception, string Message, params object[] Args);
|
||||
void Log(Log Log);
|
||||
void Log(LogLevel level, object @class, LogFunction function, string message, params object[] args);
|
||||
void Log(LogLevel level, object @class, LogFunction function, Exception exception, string message, params object[] args);
|
||||
void Log(int siteId, LogLevel level, object @class, LogFunction function, string message, params object[] args);
|
||||
void Log(int siteId, LogLevel level, object @class, LogFunction function, Exception exception, string message, params object[] args);
|
||||
void Log(Log log);
|
||||
}
|
||||
}
|
||||
|
@ -1,13 +1,12 @@
|
||||
using Oqtane.Models;
|
||||
using Oqtane.Shared;
|
||||
using System;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using Oqtane.Models;
|
||||
|
||||
namespace Oqtane.Infrastructure
|
||||
namespace Oqtane.Infrastructure.Interfaces
|
||||
{
|
||||
public interface ISyncManager
|
||||
{
|
||||
List<SyncEvent> GetSyncEvents(DateTime LastSyncDate);
|
||||
void AddSyncEvent(string EntityName, int EntityId);
|
||||
List<SyncEvent> GetSyncEvents(DateTime lastSyncDate);
|
||||
void AddSyncEvent(string entityName, int entityId);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user