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