PIbd-23-Volkov-N.A.-Compute.../ComputersShop/ComputersShopContracts/BusinessLogicContracts/IBackUpLogic.cs

15 lines
327 B
C#
Raw Normal View History

2024-05-12 11:23:15 +04:00
using ComputersShopContracts.BindingModels;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ComputersShopContracts.BusinessLogicContracts
{
public interface IBackUpLogic
{
void CreateBackUp(BackUpSaveBinidngModel model);
}
}