ISEbd-21.Gordeev.I.V.SushiB.../SushiBar/SushiBarContracts/BusinessLogicsContracts/IBackUpLogic.cs

15 lines
318 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(BackUpSaveBindingModel model);
}
}