ISEbd-22_Baygulov_A.A._Sush.../SushiBar/SushiBarContracts/BusinessLogicsContracts/IBackUpLogic.cs
2024-06-01 17:37:58 +04:00

14 lines
317 B
C#

using SushiBarContracts.BindingModels;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SushiBarContracts.BusinessLogicsContracts
{
public interface IBackUpLogic
{
void CreateBackUp(BackUpSaveBinidngModel model);
}
}