Table of Contents

Class CommandLogService

Namespace
Dynamicweb.CoreUI.Data.CommandLog
Assembly
Dynamicweb.CoreUI.dll
public sealed class CommandLogService
Inheritance
CommandLogService
Inherited Members

Constructors

CommandLogService()

public CommandLogService()

Methods

GetCommandLog(long)

public CommandLog? GetCommandLog(long id)

Parameters

id long

Returns

CommandLog

GetCommandLogBySearchFilter(CommandLogSearchFilter, out int)

public IEnumerable<CommandLog> GetCommandLogBySearchFilter(CommandLogSearchFilter filter, out int totalCount)

Parameters

filter CommandLogSearchFilter
totalCount int

Returns

IEnumerable<CommandLog>

GetCommandLogIds(int?, int?, string, string, SortDirection?, out int)

public IEnumerable<CommandLog> GetCommandLogIds(int? pagingIndex, int? pageSize, string searchValue, string sortColumnName, SortDirection? sortDirection, out int totalCount)

Parameters

pagingIndex int?
pageSize int?
searchValue string
sortColumnName string
sortDirection SortDirection?
totalCount int

Returns

IEnumerable<CommandLog>

GetCommandLogModelChange(long)

public CommandLogModelChange? GetCommandLogModelChange(long id)

Parameters

id long

Returns

CommandLogModelChange

GetCommandLogModelChangesByCommandLogId(long)

public IEnumerable<CommandLogModelChange> GetCommandLogModelChangesByCommandLogId(long commandLogId)

Parameters

commandLogId long

Returns

IEnumerable<CommandLogModelChange>

GetCommandLogModelData(long)

public CommandLogModelData? GetCommandLogModelData(long id)

Parameters

id long

Returns

CommandLogModelData

GetCommandLogModelDataByCommandLogId(long)

public CommandLogModelData? GetCommandLogModelDataByCommandLogId(long commandLogId)

Parameters

commandLogId long

Returns

CommandLogModelData

GetCommandLogModelRelation(long)

public CommandLogModelRelation? GetCommandLogModelRelation(long id)

Parameters

id long

Returns

CommandLogModelRelation

GetCommandLogModelRelationsByCommandLogId(long)

public IEnumerable<CommandLogModelRelation> GetCommandLogModelRelationsByCommandLogId(long commandLogId)

Parameters

commandLogId long

Returns

IEnumerable<CommandLogModelRelation>

GetCommandLogs(IEnumerable<long>)

public IEnumerable<CommandLog> GetCommandLogs(IEnumerable<long> ids)

Parameters

ids IEnumerable<long>

Returns

IEnumerable<CommandLog>

GetCommandLogsByModelIdentifierAndType(string, string)

public IEnumerable<CommandLog> GetCommandLogsByModelIdentifierAndType(string modelIdentifier, string ModelTypeFullName)

Parameters

modelIdentifier string
ModelTypeFullName string

Returns

IEnumerable<CommandLog>

SaveCommandLog(CommandLog)

public bool SaveCommandLog(CommandLog commandLog)

Parameters

commandLog CommandLog

Returns

bool
To top