17 lines
451 B
C#
17 lines
451 B
C#
using SecurityContract.Services;
|
|
using ToolsModule.Models;
|
|
|
|
namespace SecurityDatabaseImplementation.Implementations
|
|
{
|
|
/// <summary>
|
|
/// Реализация ISynchronizationService
|
|
/// </summary>
|
|
public class SynchronizationService : ISynchronizationService
|
|
{
|
|
public OperationResultModel RunSynchronization()
|
|
{
|
|
// пока нечего синхронизировать
|
|
return OperationResultModel.Success(null);
|
|
}
|
|
}
|
|
} |