summaryrefslogtreecommitdiff
path: root/product/Service/Infrastructure/Threading/ThreadingExtensions.cs
blob: 25b55ab899118d83cdcfd1ca7dc8aad2732793c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
using MoMoney.Utility.Core;

namespace MoMoney.Service.Infrastructure.Threading
{
    public static class ThreadingExtensions
    {
        public static IBackgroundThread on_a_background_thread(this IDisposableCommand command)
        {
            return new BackgroundThread(command);
        }
    }
}