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