Exemplo n.º 1
0
        public ActionLogProxy[] LoadActionsHistory(int assetID, int start)
        {
            ActionLogs history = new ActionLogs(TSAuthentication.GetLoginUser());

            history.LoadByAssetIDLimit(assetID, start);

            return(history.GetActionLogProxies());
        }