Table of Contents

Class CommandLogRepository

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

Methods

GetCommandLog(long)

public CommandLog? GetCommandLog(long id)

Parameters

id long

Returns

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

GetCommandLogModelRelationByModelIdentifierAndType(string, string)

public IEnumerable<CommandLogModelRelation>? GetCommandLogModelRelationByModelIdentifierAndType(string ModelIdentifier, string ModelTypeFullName)

Parameters

ModelIdentifier string
ModelTypeFullName string

Returns

IEnumerable<CommandLogModelRelation>

GetCommandLogModelRelationsByCommandLogId(long)

public IEnumerable<CommandLogModelRelation> GetCommandLogModelRelationsByCommandLogId(long commandLogId)

Parameters

commandLogId long

Returns

IEnumerable<CommandLogModelRelation>

GetCommandLogs(CommandLogSearchFilter, out int)

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

Parameters

filter CommandLogSearchFilter
totalCount int

Returns

IEnumerable<CommandLog>

GetCommandLogs(IEnumerable<long>)

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

Parameters

ids IEnumerable<long>

Returns

IEnumerable<CommandLog>

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

public IEnumerable<CommandLog> GetCommandLogs(int? pageSize, int? pageNumber, out int totalCount, string? searchValue = null, string? sortColumn = null, SortDirection? sortDirection = null)

Parameters

pageSize int?
pageNumber int?
totalCount int
searchValue string
sortColumn string
sortDirection SortDirection?

Returns

IEnumerable<CommandLog>

SaveCommandLog(CommandLog)

public bool SaveCommandLog(CommandLog commandLog)

Parameters

commandLog CommandLog

Returns

bool
To top