Get counts in [from, to) range.

Namespace: MonoSoftware.MonoX.Repositories
Assembly: MonoX (in MonoX.dll) Version: 5.1.40.5065 (5.1.40.5065)

Syntax

C#
public virtual List<AuditInfoEntity> GetCounts(
	int type,
	DateTime from,
	DateTime to
)
Visual Basic
Public Overridable Function GetCounts ( 
	type As Integer,
	from As DateTime,
	to As DateTime
) As List(Of AuditInfoEntity)
Visual C++
public:
virtual List<AuditInfoEntity^>^ GetCounts(
	int type, 
	DateTime from, 
	DateTime to
)
F#
abstract GetCounts : 
        type : int * 
        from : DateTime * 
        to : DateTime -> List<AuditInfoEntity> 
override GetCounts : 
        type : int * 
        from : DateTime * 
        to : DateTime -> List<AuditInfoEntity> 

Parameters

type
Type: System..::..Int32
from
Type: System..::..DateTime
to
Type: System..::..DateTime

Return Value

Type: List<(Of <(<'AuditInfoEntity>)>)>

Implements

IAnalyticsRepository..::..GetCounts(Int32, DateTime, DateTime)

See Also