Disco.Services.DeviceActionExtensions.CanCreateJob C# (CSharp) Method

CanCreateJob() public static method

public static CanCreateJob ( this d ) : bool
d this
return bool
        public static bool CanCreateJob(this Device d)
        {
            if (!JobActionExtensions.CanCreate())
                return false;

            return !d.IsDecommissioned();
        }