PIbd-21_MasenkinMS_Aircraft.../AircraftPlant/AircraftPlantContracts/BusinessLogicsContracts/IBackUpLogic.cs

22 lines
531 B
C#
Raw Permalink Normal View History

2024-05-13 02:01:32 +04:00
using AircraftPlantContracts.BindingModels;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AircraftPlantContracts.BusinessLogicsContracts
{
/// <summary>
/// Интерфейс бизнес-логики для создания бэкапа
/// </summary>
public interface IBackUpLogic
{
/// <summary>
/// Создать бэкап
/// </summary>
/// <param name="model"></param>
void CreateBackUp(BackUpSaveBindingModel model);
}
}