Dev2.Scheduler.ResourceHistory.ResourceHistory C# (CSharp) Method

ResourceHistory() public method

public ResourceHistory ( string workflowOutput, IList debugOutput, IEventInfo taskHistoryOutput, string userName ) : System.Collections.Generic
workflowOutput string
debugOutput IList
taskHistoryOutput IEventInfo
userName string
return System.Collections.Generic
        public ResourceHistory(string workflowOutput, IList<IDebugState> debugOutput, IEventInfo taskHistoryOutput, string userName)
        {
            TaskHistoryOutput = taskHistoryOutput;
            DebugOutput = debugOutput;
            WorkflowOutput = workflowOutput;
            UserName = userName;
        }
ResourceHistory