コード例 #1
0
 public static List <PlatformActivityLog> GetPlatformLogByUser(string userId, int maxRecords)
 {
     return(Transformations.TransformPlatformLogTableEntitiesToPlatformActivityLogs(Internal.GetPlatformLogByUser(userId, maxRecords)));
 }
コード例 #2
0
 public static List <PlatformActivityLog> GetPlatformLog(int maxRecords)
 {
     return(Transformations.TransformPlatformLogTableEntitiesToPlatformActivityLogs(Internal.GetPlatformLog(maxRecords)));
 }
コード例 #3
0
 public static List <PlatformActivityLog> GetPlatformLogByCategory(CategoryType categoryType, int maxRecords)
 {
     return(Transformations.TransformPlatformLogTableEntitiesToPlatformActivityLogs(Internal.GetPlatformLogByCategory(categoryType, maxRecords)));
 }