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