SushiBarBase/SushiBar/SushiBarContracts/BusinessLogicsContracts/IBackUpLogic.cs

10 lines
187 B
C#

using SushiBarContracts.BindingModels;
namespace SushiBarContracts.BusinessLogicsContracts
{
public interface IBackUpLogic
{
void CreateBackUp(BackUpSaveBinidngModel model);
}
}