PIbd-23-Radaev-A.V.-GiftShop/GiftShop/GiftShopContracts/BusinessLogicsContracts/IBackUpLogic.cs

10 lines
187 B
C#
Raw Normal View History

2024-05-17 13:28:57 +04:00
using GiftShopContracts.BindingModels;
namespace GiftShopContracts.BusinessLogicsContracts
{
public interface IBackUpLogic
{
void CreateBackUp(BackUpSaveBinidngModel model);
}
}