rdt-client/server/RdtClient.Service/Wrappers/ProcessFactory.cs
Cucumberrbob fd073b4762
Add interfaces for TorrentData, Downloads, Process, ProcessFactory
Making them interfaces lets us dependency inject them, allowing a given class to be tested.
2025-02-17 21:57:29 +00:00

9 lines
163 B
C#

namespace RdtClient.Service.Wrappers;
public class ProcessFactory: IProcessFactory
{
public IProcess NewProcess()
{
return new Process();
}
}