Making them interfaces lets us dependency inject them, allowing a given class to be tested.
6 lines
110 B
C#
6 lines
110 B
C#
namespace RdtClient.Service.Wrappers;
|
|
|
|
public interface IProcessFactory
|
|
{
|
|
public IProcess NewProcess();
|
|
}
|