main
 1using gorilla.commons.Utility;
 2
 3namespace momoney.service.infrastructure.threading
 4{
 5    static public class ThreadingExtensions
 6    {
 7        static public IBackgroundThread on_a_background_thread(this DisposableCommand command)
 8        {
 9            return new BackgroundThread(command);
10        }
11    }
12}