10 lines
220 B
C#
Raw Normal View History

2023-04-22 23:57:23 +04:00
using FurnitureAssemblyContracts.BindingModels;
namespace FurnitureAssemblyContracts.BusinessLogicsContarcts
{
public interface IBackUpLogic
{
void CreateBackUp(BackUpSaveBinidngModel model);
}
}