9 lines
187 B
C#
9 lines
187 B
C#
|
|
namespace PizzeriaContracts.BusinessLogicsContracts
|
|
{
|
|
public interface IWorkProcess
|
|
{
|
|
void DoWork(IImplementerLogic implementerLogic, IOrderLogic orderLogic);
|
|
}
|
|
}
|