GetTransactionHistory() private method

private GetTransactionHistory ( System.DateTime dateStart, System.DateTime dateEnd, uint start, uint count ) : List
dateStart System.DateTime
dateEnd System.DateTime
start uint
count uint
return List
Ejemplo n.º 1
0
 public List <AgentTransfer> GetTransactionHistory(UUID toAgentID, UUID fromAgentID, DateTime dateStart, DateTime dateEnd, uint?start, uint?count)
 {
     return(m_connector.GetTransactionHistory(toAgentID, fromAgentID, dateStart, dateEnd, start, count));
 }