Using static void methods

Hello, how to use static void methods in BackgroundJob.Enqueue
Example:

public class Orders
{

public void static Test (string param)
{
//Logic
}

}

I need to use the Test method.

BackgroundJob.Enqueue( What here should be? );

Thank you!