From 50398f172fc6f9ae7117ce668a182a390b896c4d Mon Sep 17 00:00:00 2001 From: Ivan_Starostin Date: Fri, 21 Jun 2024 21:47:39 +0400 Subject: [PATCH] Upload files to 'ShipyardContracts/BusinessLogicContracts' --- .../BusinessLogicContracts/IBackUpLogic.cs | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 ShipyardContracts/BusinessLogicContracts/IBackUpLogic.cs diff --git a/ShipyardContracts/BusinessLogicContracts/IBackUpLogic.cs b/ShipyardContracts/BusinessLogicContracts/IBackUpLogic.cs new file mode 100644 index 0000000..7b24908 --- /dev/null +++ b/ShipyardContracts/BusinessLogicContracts/IBackUpLogic.cs @@ -0,0 +1,14 @@ +using ShipyardContracts.BindingModels; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace ShipyardContracts.BusinessLogicContracts +{ + public interface IBackUpLogic + { + void CreateBackUp(BackUpSaveBinidngModel model); + } +}