9 lines
201 B
C#
Raw Normal View History

2023-05-02 18:16:03 +04:00
using SushiBarContracts.BindingModels;
namespace SushiBarContracts.BusinessLogicsContracts
{
public interface IBackUpLogic
{
2023-05-02 21:34:28 +04:00
void CreateBackUp(BackUpSaveBindingModel model);
2023-05-02 18:16:03 +04:00
}
}