Pibd-22_Presnyakova.V.V_Jew.../JewelryStoreContracts/BusinessLogicsContracts/IBackUpLogic.cs

15 lines
311 B
C#
Raw Normal View History

2023-05-02 11:38:30 +04:00
using JewelryStoreContracts.BindingModels;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace JewelryStoreContracts.BusinessLogicsContracts
{
public interface IBackUpLogic
{
void CreateBackUp(BackUpSaveBinidngModel model);
}
}