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