8 lines
177 B
C#
8 lines
177 B
C#
namespace PlumbingRepairContracts.BusinessLogicsContracts
|
|
{
|
|
public interface IWorkProcess
|
|
{
|
|
void DoWork(IImplementerLogic implementerLogic, IOrderLogic orderLogic);
|
|
}
|
|
}
|