Disco.Services.JobExtensions.Status C# (CSharp) Method

Status() public static method

public static Status ( this j ) : string>.Tuple
j this
return string>.Tuple
        public static Tuple<string, string> Status(this Job j)
        {
            var statusId = j.CalculateStatusId();
            return new Tuple<string, string>(statusId, JobStatusDescription(statusId, j));
        }