10 lines
202 B
C#
Raw Normal View History

2024-04-03 17:52:29 +04:00
using PizzeriaContracts.BindingModels;
namespace PizzeriaContracts.BusinessLogicsContracts
{
public interface IBackUpLogic
{
void CreateBackUp(BackUpSaveBinidngModel model);
}
}