11 lines
227 B
C#
Raw Normal View History

2023-05-07 17:52:26 +04:00
using PrecastConcretePlantContracts.BindingModels;
namespace PrecastConcretePlantContracts.BusinessLogicsContracts
{
public interface IBackUpLogic
{
void CreateBackUp(BackUpSaveBinidngModel model);
}
}