PIbd-22_Karamushko_M_K_Pizz.../Pizzeria/PizzeriaContracts/BusinessLogicsContracts/IBackUpLogic.cs

11 lines
203 B
C#
Raw Normal View History

2023-05-05 00:09:30 +04:00
using PizzeriaContracts.BindingModels;
namespace PizzeriaContracts.BusinessLogicsContracts
{
public interface IBackUpLogic
{
void CreateBackUp(BackUpSaveBinidngModel model);
}
}