11 lines
203 B
C#
11 lines
203 B
C#
|
using PizzeriaContracts.BindingModels;
|
|||
|
|
|||
|
namespace PizzeriaContracts.BusinessLogicsContracts
|
|||
|
{
|
|||
|
public interface IBackUpLogic
|
|||
|
{
|
|||
|
void CreateBackUp(BackUpSaveBinidngModel model);
|
|||
|
}
|
|||
|
|
|||
|
}
|